how to ➢get zeros beneath the pivot in each column.

4 ビュー (過去 30 日間)
Ahmed
Ahmed 2020 年 11 月 17 日
回答済み: Monisha Nalluru 2020 年 11 月 20 日
function [x] = g_elimination( A,b )
[M,N] = size(A);
if M ~= N
error('Matrix A is not a square') ;
end

回答 (1 件)

Monisha Nalluru
Monisha Nalluru 2020 年 11 月 20 日
Hi Ahmed,
From my understanding, you want to add a row of zeros to matrix. This can be done in many ways,
First create a zeros matrix of required 1 by N where N is number of columns. After use direct assignment or cat function
As an example
A=[1 2 3; 3 4 5; 6 7 8];
Z=zeros(1,3);
newarray=[A;Z]
or
newarray= cat(1,A,Z)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by