How do I ask for a string input?
조회 수: 13 (최근 30일)
이전 댓글 표시
n=input("Number of files: ");
for i=1:n
FileName(i) = input("File Name: ","s");
Here is my code which ends up giving me an error message saying
I'm simply asking for a string and inputting it into FileName which should hold all the string
Unable to perform assignment because the indices on the left side are not compatible with the size of the right side.
Error in DataReader (line 6)
FileName(i) = input("File Name: ","s");
What am I doing wrong? Just 20 minutes ago my code was working perfectly fine
댓글 수: 0
채택된 답변
Star Strider
2022년 10월 7일
It is likely easier to save it to a cell array —
FileName{i} = input("File Name: ","s");
That worked when I tried it offline.
.
댓글 수: 4
Star Strider
2022년 10월 9일
As always, my pleasure!
It also leaves the Command Window free, another reason I prefer it.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 String에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!