Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
I have finished with my programming about making a script file could anybody help me fix the command?
조회 수: 1 (최근 30일)
이전 댓글 표시
This is the command I could think of. Could anybody help me I'm really confused about the question. I don't know how to answer but this is the command i have got until now.
for vector = 1:5
vector = rand(1,6)
end
댓글 수: 2
Adam Danz
2019년 8월 24일
편집: Adam Danz
2019년 8월 24일
The assignment doesn't specify whether the vectors should be row or column vectors, both could be concatenated horizontally to create either a [6x5] matrix or a [1x30] row vector. There are many ways to accomplish either interpretation and with some trial-and-error and some google'ing you'll succeed!
The code in your question is overwriting the vector on each iteration of the for-loop so you'll always end up with a 1x6 vector.
답변 (1개)
KALYAN ACHARJYA
2019년 8월 24일
편집: KALYAN ACHARJYA
2019년 8월 24일
vector=cell(1,5);
for i=1:5
vector{i}=rand(1,6);
end
data1=cell2mat(vector)
or you an do concatenate arrays horizontally read here
댓글 수: 1
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!