Create a 2x2 matrix with column of values and zeros

조회 수: 40 (최근 30일)
Christopher
Christopher 2022년 9월 24일
답변: Rohit 2022년 9월 27일
Hi Guys,
So i'm experiencing a bit of difficulty in creating a temporary matrix, code below:
Positions = Postions'
Now, I would like to create a 2x2 matrix, with one column containg the transpose Position values and the other column to just be 0 for all the corresponding transpose values. Hope this makes sense.
  댓글 수: 1
Image Analyst
Image Analyst 2022년 9월 24일
Not really, not until you give an example.
If you have any more questions, then ask it after you read this:

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

답변 (1개)

Rohit
Rohit 2022년 9월 27일
Hello,
I understand that you are trying to create a 2*2 matrix with one column as “Positions” values and the second as all 0 values. Here, I am assuming the “Positions” to be an array [1 2]. Below code will create the required matrix:
Positions = [1 2];
col2 = zeros(2,1);
matrix = [Positions' col2]
matrix = 2×2
1 0 2 0

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by