matrix dimensions are not equal
이전 댓글 표시
how to make two cells (having strings as elements) of different dimensions equal?
답변 (1개)
KSSV
2020년 10월 19일
Read about strcat. If str is your string of size 1*2...to append zero at tne end use:
iwant1 = strcat(str,'0') % option 1
iwant2 = [str,'0'] % option 2
댓글 수: 2
Jetty Rakesh Aditya
2020년 10월 19일
KSSV
2020년 10월 19일
You can use strcat for cells also.
str{1} = 'MA' ;
str{2} = 'LA' ;
iwant = strcat(str,'0')
카테고리
도움말 센터 및 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!