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!