How can I access char elements from the beginning up to some fixed index of the char?
조회 수: 2 (최근 30일)
이전 댓글 표시
a = char(abdefghijk);
I want the output 'abcdefg'
댓글 수: 0
채택된 답변
추가 답변 (2개)
Vikram Ojha
2022년 12월 7일
편집: Vikram Ojha
2022년 12월 7일
>> a='abcdefghijk'
>> a(1:5)
ans =
'abcde'
In genral a(1:n) % n for index
You can consider going through following doc: https://in.mathworks.com/help/matlab/ref/string.html, it will be helpful
In case you want you can take Matlab fundamental certification: https://matlabacademy.mathworks.com/details/matlab-fundamentals/mlbe
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!