How can I operate a matrix by a vector?

1 Ansicht (letzte 30 Tage)
Jerson García
Jerson García am 25 Sep. 2021
Beantwortet: KSSV am 26 Sep. 2021
Hi, I need nelp.
I need to perform the following function f (x) = || Ax - b || ^ 2
A = [2 3, 1-2, 4 1];
b = [2,4, -5];
syms x1 x2
x = [x1 x2];
(sqrt ((A * x-b) ^ 2)) ^ 2

Akzeptierte Antwort

KSSV
KSSV am 26 Sep. 2021
A = [2 3 ; 1 -2 ; 4 1];
b = [2,4, -5]';
syms x1 x2
x = [x1 ; x2];
f = (sqrt ((A * x-b) .^ 2)) .^ 2
f = 

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by