Inverse Matrix for 6x6 matrix with variables
59 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am trying to find the inverse of the matrix above. Here is my code:
x = symvar('x')
y = symvar('y')
z = symvar ('z')
A=[x y y 0 0 0; y x y 0 0 0; y y x 0 0 0; 0 0 0 z 0 0; 0 0 0 0 z 0; 0 0 0 0 0 z]
b=inv(A)
This is giving me the following error:
Error using inv
Invalid data type. Input matrix must be double or single.
Error in untitled (line 5)
b=inv(A)
Could someone explain to me what I'm doing wrong? I'm fairly inexperienced with matlab and I'm not sure what is wrong. Any information is greatly appreciated. Thank you!
0 Kommentare
Antworten (2)
Stephen23
am 7 Nov. 2023
syms x y z
A = [x,y,y,0,0,0; y,x,y,0,0,0; y,y,x,0,0,0; 0,0,0,z,0,0; 0,0,0,0,z,0; 0,0,0,0,0,z];
b = inv(A)
3 Kommentare
John D'Errico
am 7 Nov. 2023
You may have written a function of your own, named inv. That would be a truly terrible idea.
Steven Lord
am 7 Nov. 2023
The symvar function does not define symbolic variables. It identifies identifiers in an expression (other than those in a small list of excluded identifiers) that could be variables and returns those identifiers in a cell array of text data.
x = symvar('x')
y = symvar('y')
z = symvar ('z')
So when you construct A, it is not a symbolic variable. It's a cell array.
A=[x y y 0 0 0; y x y 0 0 0; y y x 0 0 0; 0 0 0 z 0 0; 0 0 0 0 z 0; 0 0 0 0 0 z]
whos x y z A
Instead, you should use the sym or syms functions to define symbolic variables (as shown in the answer from @Stephen23) and create A using those symbolic variables.
syms x y z
A=[x y y 0 0 0; y x y 0 0 0; y y x 0 0 0; 0 0 0 z 0 0; 0 0 0 0 z 0; 0 0 0 0 0 z]
whos x y z A
The inv function is defined for sym arrays.
AI = inv(A)
The fact that the symvar function you called didn't display anything makes me suspect that you might be using a symvar.m file other than the ones in MATLAB, Symbolic Math Toolbox, or Curve Fitting Toolbox. Or did you simply not show us the output that you received when you ran the code? What does this command show you when you run it?
which -all symvar
0 Kommentare
Siehe auch
Kategorien
Mehr zu Linear Algebra 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!