plotting mx+c from a cell within a table

2 次查看(过去 30 天)
I am attempting to plot multiple equations on a single plot in y=mx+c form. The equations are already located within a central table called Gal50KBTUEquationComparison. I have no idea how to pull all of the equations seperately into matlab and compare them on the same plot. Below is my code
x = linspace(0,15,50);
y = Gal50KBTUEquationComparison{1};
plot(x,y);
ylim([0, 120]);
xlim([0 inf]);

回答(1 个)

Maadhav Akula
Maadhav Akula 2019-11-6
First extract the required data from the given table(Gal50KBTUEquationComparison) as follows :
y1 = table2array(Gal50KBTUEquationComparison(1,1));
and for plotting all of the plots on a single plot, you can use the following:
plot(x,y1,x,y2,);
The following links might be helpful:

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by