How to create a Matrix
조회 수: 1 (최근 30일)
이전 댓글 표시
What should i write in the code to create this matrix
댓글 수: 1
Huma Hafeez
2021년 5월 24일
you can write this in MATLAB like:
A=[22 18 14; 21 17 13; 20 16 12; 19 15 11]
I would suggest you to take MATLAB Fundamentals course, its free
답변 (6개)
David Fletcher
2021년 5월 9일
A=[22 18 14; 21 17 13; 20 16 12; 19 15 11]
I would recommend you have a look at the Matlab Onramp course. It will give you a good grounding in the basics of Matlab
댓글 수: 3
Andrei Bobrov
2021년 5월 9일
편집: Andrei Bobrov
2021년 5월 9일
A = reshape(flip(11:22),4,[])
A = reshape(22:-1:11,4,[])
댓글 수: 4
Andrei Bobrov
2021년 5월 9일
편집: Andrei Bobrov
2021년 5월 9일
v = 22:-1:11;
A = reshape(v,4,[]);
or
v = 22:-1:10;
n = numel(v);
A = reshape(v(1:n - mod(n,4)),4,[])
fyp matlab
2021년 5월 14일
Just write this to create this Matrix
A=[22 18 14; 21 17 13; 20 16 12; 19 15 11]
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Whos에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!