What is the meaning of A (1: ,: ) in matlab
조회 수: 68 (최근 30일)
이전 댓글 표시
What is the meaning of A (1 ,: ,:) in matlab
the matrix A is 4x4
so What is the meaning A (1,: ,:) =4*A (2,: ,:)
and A (4,: ,:) =7*A (2,: ,:)
댓글 수: 0
채택된 답변
Davide Masiello
2022년 2월 4일
If there are three indexes specified, it makes sense only if your matrix has three dimensions.
If it is actually 4x4, then A(1,:,:) yields the same result of A(1,:), i.e. extracting the first row of A.
So, the actual operation you are performing is A(1,:) = 4*A(2,:), which replaces the first row of A with its second row multiplied by 4.
Likewise, A(1,:) = 7*A(2,:) replaces the first row of A with its second row multiplied by 7.
댓글 수: 4
Image Analyst
2022년 2월 5일
@alize beemiel, spending two hours in this would greatly help you. A good investment of your time:
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!