Finding linear combination between 3 vectors
61 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Express(1,-2,5) in R^3 as linear combination of (1,1,1),(1,2,3),(2,-1,1)
Antworten (1)
Sufiyan
am 25 Apr. 2023
Hi,
You can refer to the below code to find linear combination between three vectors.
a=[1 1 1]';
b=[1 2 3]';
c=[2 -1 1]';
d=[1 -2 5]';
%unknown variables
syms k1 k2 k3
%equation
eqns = (k1.*a)+(k2.*b)+(k3.*c)-d==0 ;
vars = [k1 k2 k3];
[k1, k2, k3] = solve(eqns,vars)
Hope this helps!
0 Kommentare
Siehe auch
Kategorien
Mehr zu Polynomials 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!