Convert matrix A to S

조회 수: 1 (최근 30일)
SuzieChan
SuzieChan 2019년 10월 20일
댓글: Stephan 2019년 10월 20일
Hello,
I try to convert ths matrix (called A)
A = [5 8 3; 1 2 3; 2 4 6]
to a matrix called S, using this code
S =
1 2
5 8
9 10
S=[A(1,1:2); A(2:3,1).'; 9 10]
This is not qute right
Any ideas? Thank you
  댓글 수: 1
Stephan
Stephan 2019년 10월 20일
편집: Stephan 2019년 10월 20일
Did you notice that you can accept and/or vote for useful answers?

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

답변 (1개)

Stephan
Stephan 2019년 10월 20일
S=[A(2,1:2); A(1,1:2); 9 10]
  댓글 수: 6
SuzieChan
SuzieChan 2019년 10월 20일
편집: SuzieChan 2019년 10월 20일
I see all numbers in Z except 1 and 5.
So is possible to insert 1 and 5 into new code, S?
Where do I place them?
example..
S=[1 5; Z(1:2); Z(1:2)]
something like
S=[1; Z(1:2); 5; Z(1:2)]
to manually put 1 and 5 in new matrix S
how?
Stephan
Stephan 2019년 10월 20일
>> S = [1 Z(3,3); 5 Z(2,1); Z(2,2:end)]
S =
1 2
5 8
9 10

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

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by