help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

extract from cell?


From: Daniel Heiserer
Subject: extract from cell?
Date: Thu, 15 Feb 2001 17:47:56 +0100

How can I get a matrix I put into a cell?
Whatever operation I apply the cell returns a cell.
I need the basic datatype somewhen.

thanks daniel

octave-2.1.31:6> a={1,rand(3),'jonny'}
a =
{
  [1,1] = 1
  [1,2] =

    0.14950  0.69857  0.99893
    0.49560  0.54115  0.17106
    0.32942  0.34194  0.17245

  [1,3] = jonny
}
octave-2.1.31:7> b=a(1,2)
b =
{
  [1,1] =

    0.14950  0.69857  0.99893
    0.49560  0.54115  0.17106
    0.32942  0.34194  0.17245

}

Thanks daniel

Attachment: daniel.heiserer.vcf
Description: Card for Daniel Heiserer


reply via email to

[Prev in Thread] Current Thread [Next in Thread]