plotting mx+c from a cell within a table

1 view (last 30 days)
Nathan Rivard
Nathan Rivard on 30 Oct 2019
Answered: Maadhav Akula on 6 Nov 2019
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]);

Answers (1)

Maadhav Akula
Maadhav Akula on 6 Nov 2019
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:

Tags

Community Treasure Hunt

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

Start Hunting!