Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Search results for query: *

  • Users: noque
  • Order by date
  1. noque

    Problem modifying a guide-generated graphical user interface

    I think, FIG files are created by M files. Maybe, after you modify the M file, try to give its child-FIG file a new name and see what happens...
  2. noque

    Inserting figures into excel file from matlab

    try this: kk=actxserver('excel.application') % kk.get % this will show all properties kkmbs=kk.Workbooks % kkmbs.invoke % this will show all methods kkmbs.Open('c:\myoldfile.xls') % myoldfile.xls is a previously created excell file % now you can work with kkmbs - hope it...
  3. noque

    cannt get [1x45 char] property of an actxserver (i.e. Excel)

    Hi, Q: How to address structured PROPERTY of an ACTXSERVER object? Example: jjj=actxserver('excel.application'); jjj.get results in appearance of jjj object with some PROPERTIES showing as with [1 x 45 char] structure, one of such being ThisCell: [1x45 char]. I can not go...
  4. noque

    3D image

    A simple matlab variable can not be a 3-D matrix: a = [2 3 5 6 3 2 1 0]; is the best it can do, but it is still a 2-D matix. What I would do: a=[1 2 3 4]; b=[5 6 7 8]; vv.a=a; vv.b=b; RESULT: vv = a: [2x2 double] b: [2x2 double] (<1X1> STRUCTARAL ARRAY) - check in the Workspace...
Back
Top