how to solve this equation in matlab??
Mostra commenti meno recenti
3x-2y+4=0
-x+2y -3=0
Risposte (1)
A = [3 0 -2;-1 2 0];
b = [-4;3];
sol_inhomogen = A\b;
sol_homogen = null(A);
sol = @(lambda) sol_inhomogen + lambda*sol_homogen
%E.g.
sol(1)
A*sol(1)-b
Categorie
Scopri di più su PID Controller Tuning in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!