How to plot simulink data saved to the workplace?

I ran a simulink simulation and I saved the data as a workplace block that includes the time and velocity. I also saved two more workplace blocks data that include time and gear and time and improved gear. I want to plot all three together in a graph with two different y-axis. Thanks for the help!

 采纳的回答

I assume you want to plot velocity w.r.t time on one side and gear/improved gear w.r.t time on other side of graph. Your code should look something like this:
yyaxis left
plot(time,velocity);
yyaxis right
plot(time,gear,time,improvedgear);
For details see here.

2 个评论

I get this error code: Undefined function or variable 'yyaxis'.

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Simulink Functions 的更多信息

产品

标签

Community Treasure Hunt

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

Start Hunting!

Translated by