Error while plotting 3 vectors- Data must be numeric, date time, duration or an array convertible to double.
1 回表示 (過去 30 日間)
古いコメントを表示
RAHUL AGARWAL
2020 年 6 月 9 日
回答済み: Sai Sri Harsha Vallabhuni
2020 年 6 月 9 日
rohit=readtable('rahul11.xlsx')
t = rohit(:,1);
x = rohit(:,2);
u = rohit(:,3);
plot3(t,x,u)
%t,x,u are vectors of size 1*242
0 件のコメント
採用された回答
Sai Sri Harsha Vallabhuni
2020 年 6 月 9 日
t = rohit(:, 1);
x = rohit(:,2);
u = rohit(:,3);
t, x, u are of type table and table datatypes do not have plot method.
Instead you can do
t = rohit.(1);
x = rohit.(2);
u = rohit.(3);
plot3(t, x, u)
Hope this solves your problem.
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!