Hi, How i can plot 24244x29 availabale measured data against 24244x1 available measured data? The data is in .mat file ! any suggestion ? thanks
1 回表示 (過去 30 日間)
古いコメントを表示
Hi, How i can plot 24244x29 availabale measured data against 24244x1 available measured data? The data is in .mat file ! any suggestion ? thanks
0 件のコメント
採用された回答
Ameer Hamza
2018 年 5 月 20 日
編集済み: Ameer Hamza
2018 年 5 月 20 日
load the data from file using
data = load('filename');
and the plot using plot() function
plot(data.x, data.y);
here x is the name of 24244x1 variable and y is the name of 24244x29 variable. This command will give you 29 lines on one axes.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!