creating an string array
이전 댓글 표시
ive a random string input and i want it indext in thress int an arry i can acsess later
.eg Array[1] = input(1:3)
gaining a out put of say ['qwe', 'igc', 'top']
then i want to acsess this as say
disp(Array[1])
qwe
please help i cannot figure out what im doing wrong?
댓글 수: 2
Walter Roberson
2018년 5월 9일
Which programming language are you using? It does not appear to be MATLAB.
Walter Roberson
2020년 6월 24일
Array = ["qwe", "igc", "top"];
Array(1)
답변 (1개)
AKARSH KUMAR
2020년 6월 24일
0 개 추천
Your question is not clear, can you please explain it more clearly.
카테고리
도움말 센터 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!