Manipulation Rules for Special Matrice
조회 수: 1 (최근 30일)
이전 댓글 표시
How to create a 4*6 matrix in which all elements have the value of pi
댓글 수: 0
답변 (4개)
jean claude
2017년 10월 22일
편집: jean claude
2017년 10월 22일
there is many ways to do it, you can for example assign i rows, j rows in a matrix of ones; then multiply by pi
x=ones(4,6)
y=x.*pi
댓글 수: 3
jean claude
2017년 10월 22일
another way; it means from the first to 4th row and from the first to 6th column.
mat(1:4,1:6)=pi
Steven Lord
2017년 10월 22일
Creating matrices is one of the fundamental operations in MATLAB. Take a look at the links on this documentation page. A number of the functions included on that page will be of use to you, both for this particular assignment and as you work more with MATLAB.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!