Hello. Just start to learning this program. I have .mat file with many colons and i want to make a plot only from two of them, how can i make it ?
3 ビュー (過去 30 日間)
古いコメントを表示
Data = load('MERITEV_CAS.mat');
x=Data(:,6);
y=Data(:,8);
plot(x,y)
0 件のコメント
採用された回答
Voss
2024 年 4 月 16 日
This is presuming that the variable in your mat file is called "Data"; if it's called something else, replace "Data" in the code with that name.
S = load('MERITEV_CAS.mat');
x=S.Data(:,6);
y=S.Data(:,8);
plot(x,y)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!