0
How to plot with 2 vector as horizontal axis.

Hello, i want to plot data with time as vertical axis (36 datas) and but for the vertical axis i want to make it as a combination between ih = (0,0,0,0,0,0,1,1,...,1,2,2,...,2,3,3,...,3,4,4,...,4,5,5,...,5) and iv = (0,0,0,0,0,0,1,1,...,1,2,2,...,2,3,3,...,3,4,4,...,4,5,5,...,5) so the vertical axis are (ih,iv) = (0,0),(0,1),(0,2),...,(0,5),(1,0),(1,1),(1,2),....,(5,5) = (36 datas). Anyone can help please?


Scilab 13-02-19, 3:04 p.m. yanfanbl
0

Could you please elaborate? Because as per your query, you want plot time and both (ih,iv) on vertical axis. Please write problem statement accurately.

19-02-19, 4:09 p.m. Rashmi


0

You mean like ?

for i=1:1:36

plot2d(x=ih(i),y=iv(i))

end

26-02-19, 5:34 p.m. RoundTriangle


Log-in to answer to this question.