How i display matrix ?
조회 수: 327 (최근 30일)
이전 댓글 표시
my matrix is the form:
Ki = [25 35, 56 41,85 78]
i want print the like 35 or 41 or 78
댓글 수: 0
채택된 답변
Star Strider
2015년 9월 16일
Firsgt, you need to change the commas to semicolons, then display the second column:
Ki = [25 35; 56 41; 85 78]
Display = Ki(:,2)
댓글 수: 2
Star Strider
2015년 9월 16일
Then you have to specify the row as well:
E12 = Ki(1,2) % Display ‘35’
E12 = Ki(2,2) % Display ‘41’
E12 = Ki(3,2) % Display ‘78’
추가 답변 (2개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!