how to recived input user in matlab
    조회 수: 3 (최근 30일)
  
       이전 댓글 표시
    
i want to recived the word from the user and restore each charater 
for example
string=input('enter the string>>');
-- shehab 
0=s
1=h
2=e
and so on 
댓글 수: 0
채택된 답변
  Rik
      
      
 2020년 5월 29일
        You need to specify that you want the result as a char array:
str=input('enter the string>>','s');
It is also a good idea to develop the habit of avoiding builtin Matlab names.
댓글 수: 0
추가 답변 (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!

