How i plot this value with respect to time in matlab 2015 version?
1 次查看(过去 30 天)
显示 更早的评论
Time Allystar M8T F9P LS
1 -0.1788 -0.1246 -0.1553 -0.1248
2 -0.3784 -0.0922 0.0863 -0.1232
3 -0.026 0.0978 0.2577 0.3321
4 -0.0607 -0.149 -0.0981 0.0831
5 -0.9248 -0.6555 -0.7323 -0.745
6 -0.2253 -0.1903 -0.3662 -0.3096
7 -0.2381 -0.2125 -0.3155 -0.3181
0 个评论
回答(1 个)
Califfo
2020-10-13
编辑:Califfo
2020-10-13
Hi,
try this
clc
clear
close all
A =[1 -0.1788 -0.1246 -0.1553 -0.1248
2 -0.3784 -0.0922 0.0863 -0.1232
3 -0.026 0.0978 0.2577 0.3321
4 -0.0607 -0.149 -0.0981 0.0831
5 -0.9248 -0.6555 -0.7323 -0.745
6 -0.2253 -0.1903 -0.3662 -0.3096
7 -0.2381 -0.2125 -0.3155 -0.3181];
figure('Color','w')
plot(A(:,1),A(:,2:5))
legend('Allystar','M8T','F9P','LS')
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Entering Commands 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!