plotting mx+c from a cell within a table

3 visualizaciones (últimos 30 días)
Nathan Rivard
Nathan Rivard el 30 de Oct. de 2019
Respondida: Maadhav Akula el 6 de Nov. de 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]);

Respuestas (1)

Maadhav Akula
Maadhav Akula el 6 de Nov. de 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:

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by