hi i need to save each iteration result in one csv file or matrix format.
for i=1:10
solutions=randperm(15)
end
thanks in advance.

 채택된 답변

madhan ravi
madhan ravi 2019년 2월 5일
편집: madhan ravi 2019년 2월 5일

0 개 추천

EDITED:
M=10;
N=15;
solutions=zeros(M,N);
for k=1:M
solutions(k,:)=randperm(N);
end
dlmwrite('file1.csv',solutions)

댓글 수: 3

msr16
msr16 2019년 2월 5일
i need all solutions in one csv file but this create 10 file.
madhan ravi
madhan ravi 2019년 2월 5일
See the edited answer.
msr16
msr16 2019년 2월 5일
thanks madhan ravi it works

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Standard File Formats에 대해 자세히 알아보기

질문:

2019년 2월 5일

댓글:

2019년 2월 5일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by