필터 지우기
필터 지우기

How do I create a mat file in a loop and store a matrix generated in that newly created mat file? (i also need to save every created mat file in the loop)

조회 수: 1 (최근 30일)
I tried with the following code but it says
for j=0:0
for k=0:1
filename=sprintf('%d%d.wav',j,k);
sin_of_sin=audioread(filename);
[st_matrix] = st_temp(sin_of_sin); % st_temp is my function file which returns the generated matrix
sprintf('angry_%d%d.mat',j,k)=st_matrix;
end
end
Error message:
Subscript indices must either be real positive integers or logicals.
  댓글 수: 2
Jan
Jan 2018년 3월 24일
Please post the complete error message, because it will tell us in which line the problem occurs.
sangeet sagar
sangeet sagar 2018년 3월 24일
Subscript indices must either be real positive integers or logicals.
Error in stransform (line 14)
sprintf('angry_%d%d.mat',j,k)=st_matrix(:,1:50);

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

채택된 답변

Image Analyst
Image Analyst 2018년 3월 24일
Instead of assigning a matrix to the sprintf() function, which of course you cannot do,
sprintf('angry_%d%d.mat',j,k)=st_matrix; % Bad syntax!!!
try this:
matFileName = fullfile(pwd, sprintf('angry_%d%d.mat',j,k));
save(matFilename, 'st_matrix');
  댓글 수: 3
Image Analyst
Image Analyst 2018년 3월 24일
It will make those files. Variables to save are listed in single quotes. Each file will have the current verions/copy of st_matrix stored inside of it. If you also want to save the filename itself inside of the mat file, you can add it:
save(matFilename, 'st_matrix', 'matFilename');

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

추가 답변 (1개)

Jan
Jan 2018년 3월 24일
sprintf('angry_%d%d.mat',j,k)=st_matrix;
This cannot work. On the left you create a char vector, not a variable. In addition there is no need to create a variable dynamically only to create a MAT file. See also: Tutorial: Why to avoid to create variables dynamically.
If you want to create a MAT file, use save:
FileName = sprintf('angry_%d%d.mat',j,k);
save(FileName, 'st_matrix');
  댓글 수: 2
sangeet sagar
sangeet sagar 2018년 3월 24일
Can you please tell, why did you write 'st_matrix' here.
save(FileName, 'st_matrix');
I need to save the filename in every iteration. For example in first iteration- angry_00.mat, then in second iteration angry_01.mat and so on.

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

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by