An empty sum result when using function solve
Ältere Kommentare anzeigen
clear;
syms x y
a=[x y];
b=[1 1];
c=[1 -1];
dot(a,b)-1
dot(a,c)-2
[x1,y1]=solve('dot(a,b)-1','dot(a,c)-2')
[x2,y2]=solve('x+y-1','x-y-2')
why can't I get the results of x and y from the first line of writing the solve function, while there are results from the second line?
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Get Started with MuPAD finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!