How change only second number in a=ones(1,10)?
조회 수: 5 (최근 30일)
이전 댓글 표시
댓글 수: 0
채택된 답변
Dyuman Joshi
2024년 1월 16일
Simply use indexing to change the element -
a = ones(1,10);
a(2) = 2
댓글 수: 0
추가 답변 (1개)
Jaime Abad Arredondo
2024년 1월 16일
You should look at the syntax for array slicing. In matlab it's fairly easy. You would do something like:
a=ones(1,10);
disp(a)
a(2)=2;
disp(a)
Cheers!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!