plot solution of linear systems (linsolve)

5 vues (au cours des 30 derniers jours)
M03
M03 le 14 Déc 2018
Commenté : Matt J le 16 Déc 2018
Hello.
I am looking for a code that will help me plot a graph of solution of these two linear systems. My codes are the following, however, how can I get a solution into one plot with lines representing solution for each equation?
? +? +? = 2
? +2? −? = 4
−? +2? +? = 2
% LS for A
A = [1 1 1; 1 2 -1; -1 2 1];
a = [2; 4; 2];
linsolve(A,a)
plot ????
  6 commentaires
M03
M03 le 14 Déc 2018
That's the point. I should make one for the system above.
And if I have a 3x2 system like this, how will the code look like?
+2? +? =
7 ? −2? = 1
−? +5? = 4
Matt J
Matt J le 16 Déc 2018
An equation in 3 unknowns does not define a line, but rather a plane.

Connectez-vous pour commenter.

Réponses (2)

madhan ravi
madhan ravi le 15 Déc 2018
Modifié(e) : madhan ravi le 15 Déc 2018
doc syms
doc fplot
doc equationsToMatrix
doc linsolve
doc plot % see how to plot a single point especially markers
doc legend
doc xlim

Star Strider
Star Strider le 15 Déc 2018
This was something of a challenge in the format presented.
% % % Equations: -2*x + y = 1; 3*x + 2*y = 10; -15*x + 2*y = -80
X = [-5 1; 10 1]; % Create: [X 1] Matrix
A = [2 1; -3/2 10/2; 15/2 -80/2]; % ‘Solve’ The Equations In ‘y = B1*x + B2’ Form
Y = X * A'; % Solve For ‘Y’
CoefVct = linsolve([A(:,1), ones(size(A(:,1)))], A(:,2));
figure
plot(X(:,1), Y)
Ax = gca;
Ax.YAxisLocation = 'origin';
ylim([0 20])
producing:
CoefVct =
-5.21862348178138
2.58299595141701
and the plot.
The plot appears to be as requested.

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by