フィルターのクリア

plotting mx+c from a cell within a table

1 回表示 (過去 30 日間)
Nathan Rivard
Nathan Rivard 2019 年 10 月 30 日
回答済み: Maadhav Akula 2019 年 11 月 6 日
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 Center および File ExchangeAnnotations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by