How to insert an element into matrix?

Suppose I have a matrix A = ones(4,6). I want to combine it with a vector B = zeros(1,6) to make another matrix C of size 5 by 6, where the first four rows would be ones and fifth would be zero.

답변 (2개)

Image Analyst
Image Analyst 2017년 8월 22일

2 개 추천

Here's code to do both inserting (like your subject line) and appending (like your message body):
A = ones(4,6)
B = zeros(1,6)
% To append / concatenate:
C = [A; B]
% To insert into a specified row number:
rowToInsert = 3 % Whatever you want.
C = [A(1:rowToInsert-1, :); B; A(rowToInsert:end, :)]

댓글 수: 4

Nitesh khanna
Nitesh khanna 2020년 7월 17일
how to get variables with suffix , in matrix for..as following
x1 y1 txy1
x2 y2 txy2
x3 y3 txy3
x4 y4 txy4
I don't know what you mean. What suffix? Do you have scalar variables with those names and want to build a matrix from them? Like
M = [...
x1 y1 txy1;
x2 y2 txy2;
x3 y3 txy3;
x4 y4 txy4]
Amay Gupta
Amay Gupta 2020년 10월 14일
can the first one be used in loops?
if yes please explain.
Image Analyst
Image Analyst 2020년 10월 14일
What is "the first one"? Please explain. Why do you want loops?

댓글을 달려면 로그인하십시오.

José-Luis
José-Luis 2017년 8월 22일
편집: José-Luis 2017년 8월 22일

0 개 추천

result = [A;B]
Or use cat()

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품

태그

질문:

2017년 8월 22일

댓글:

2020년 10월 14일

Community Treasure Hunt

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

Start Hunting!

Translated by