How i plot this value with respect to time in matlab 2015 version?

1 Ansicht (letzte 30 Tage)
SOMNATH MAHATO
SOMNATH MAHATO am 13 Okt. 2020
Bearbeitet: Califfo am 13 Okt. 2020
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

Antworten (1)

Califfo
Califfo am 13 Okt. 2020
Bearbeitet: Califfo am 13 Okt. 2020
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')

Kategorien

Mehr zu Entering Commands finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by