Plot system of equations

26 ビュー (過去 30 日間)
Emmanuel Negron
Emmanuel Negron 2019 年 9 月 4 日
回答済み: Bhargavi Maganuru 2019 年 9 月 9 日
I need help on how to type this in Matlab and make a plot of this system of equations.
  3 件のコメント
Emmanuel Negron
Emmanuel Negron 2019 年 9 月 4 日
編集済み: Emmanuel Negron 2019 年 9 月 4 日
I uploaded a picture with the discription of the system of equations I want to plot on Matlab
9x-3y=-1
(1/5)x+(2/5)y=(-1/3)
Range y=x= +-5
darova
darova 2019 年 9 月 5 日
What about plot() function?

サインインしてコメントする。

回答 (1 件)

Bhargavi Maganuru
Bhargavi Maganuru 2019 年 9 月 9 日
You can create function handles to the named or anonymous functions.
For example, for first equation in your system of equations you can write
x=linspace(-5,5);
f = @(x) (9*x+1)/3;
For more information about creating function handles refer to the link https://www.mathworks.com/help/matlab/matlab_prog/creating-a-function-handle.html
You can use fplot(f) function to create a plot defined by y=f(x)
fplot(f)
ylim([-5,5]) %to limit y-axis from -5 to 5
For more information about fplot refer to the link https://www.mathworks.com/help/matlab/ref/fplot.html

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by