Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How to find unknown coefficients of a given matrix

2 Ansichten (letzte 30 Tage)
BG
BG am 18 Mär. 2023
Geschlossen: John D'Errico am 18 Mai 2023
I have a matrix A with a as unknown coefficient. Need to find a. Please help! Do I use syms? Can I use root finding method?
A = [1 0 a^2; 2 0 8; 1 a 4]
B = [2; 4; 2]
  5 Kommentare
John D'Errico
John D'Errico am 18 Mär. 2023
Why not try it?
syms a
syms x y z
A = [1 0 a^2; 2 0 8; 1 a 4];
B = [2; 4; 2];
EQ = A*[x;y;z] == B
xyz = solve(EQ,[x,y,z],'returnconditions',true)
Think about what that tells you.
BG
BG am 19 Mär. 2023
I was able to solve it using LU decomposition. Anyway, thanks for this

Antworten (0)

Diese Frage ist geschlossen.

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by