help-octave
[Top][All Lists]
Advanced

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

Re: matrix plot how to?


From: Doug Stewart
Subject: Re: matrix plot how to?
Date: Tue, 8 Jan 2019 10:08:15 -0500



On Tue, Jan 8, 2019 at 9:12 AM eugenia <address@hidden> wrote:
Hi Marco,
as far as I could see from the octave description of my variable, it is a
2x6x6067 matrix.

I know that index (1,:,:) represents 1 row with values from 0 to 1.
(2,:,:) gives me values from 180 to 180
then  the second index represent 6 channels and the last index has 6067
values

So... it has 3 dimensions.

Thanks



Here is one way Probably not what you want but it might help

q=rand(2,6,22);
x1=q(1,1,:)(:)
y1=q(2,1,:)(:)

x2=q(1,2,:)(:)
y2=q(2,2,:)(:)

x3=q(1,3,:)(:)
y3=q(2,3,:)(:)
plot(x1,y1 ,x2,y2,x3,y3)

 

--
Sent from: http://octave.1599824.n4.nabble.com/Octave-General-f1599825.html




--
DASCertificate for 206392


reply via email to

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