How can I obtain a row with only zeros using the row reduction method?

3 ビュー (過去 30 日間)
Jonas Morgner
Jonas Morgner 2022 年 5 月 8 日
回答済み: Matt J 2022 年 5 月 8 日
m1 = [7 3; 3 -1] % Matrix
I = eye(2) % Identity matrix
Lamda = 8 % The value for λ
% B
LaI = I * Lamda % Identity matrix - value of λ
m2s = m1 - LaI % Caluculating the new matrix
% C
zc = zeros(size(m2s,1),1) % creating a zero column
m3s = [m2s, zc]
How can I use the row reduction method to only get a row with only zeros?

回答 (1 件)

Matt J
Matt J 2022 年 5 月 8 日

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by