plotting two columns of values data at workspace
3 次查看(过去 30 天)
显示 更早的评论
Hello,
I made simulation. There are two columns(1 ,2) of data at xxx.signals.values at workspace. what could be code to plot these columns versus each other to get column1=f(column2) at xxx.signals.values
1 个评论
采纳的回答
更多回答(1 个)
Titus Edelhofer
2012-8-8
Hi,
if you want to plot them against each other:
plot(xxx.signals.values(:,1), xxx.signals.values(:, 2))
Titus
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 View and Analyze Simulation Results 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!