
second-degree linear system
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Francesco Gregorini
am 28 Sep. 2018
Bearbeitet: ANKUR KUMAR
am 28 Sep. 2018
I want to solve a second-degree linear system, but I can not find anything. Want to resolve a system like this: {x^(2)−xy = y^(2)+1 ; 12x+4+y=0 is there any Matlab function that solves this type of system? I could have an example of a code?
0 Kommentare
Akzeptierte Antwort
KALYAN ACHARJYA
am 28 Sep. 2018
Bearbeitet: KALYAN ACHARJYA
am 28 Sep. 2018
syms x y
[solx,soly]=solve(x^2-x*y-y^2-1==0, 12*x+4+y==0)

0 Kommentare
Weitere Antworten (1)
ANKUR KUMAR
am 28 Sep. 2018
Bearbeitet: ANKUR KUMAR
am 28 Sep. 2018
ly make all equation equal to 0. Write this in a function and save this as as first.m
function F = first(x)
F(1)=(x(1)^2)-(x(1)*x(2))-(x(2)^2)-1;
F(2)=12*x(1)+4+x(2);
end
Now type this in command window
fun = @first;
x0 = [0,0];
x = fsolve(fun,x0)
Type this to get the iterated result.
options = optimoptions('fsolve','Display','iter');
[x,fval] = fsolve(@first,x0,options)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Equation Solving finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!