Info

此问题已关闭。 请重新打开它进行编辑或回答。

Store character in a array possible?

1 次查看(过去 30 天)
JOJO
JOJO 2014-1-17
关闭: MATLAB Answer Bot 2021-8-20
I want to store the name of the character the user type so I can use it for a future function [t,fs]= wavread(file);
however I get this error: In an assignment A(:) = B, the number of elements in A and B must be the same.
CODE:
for i=10
i=i+1
name = input ('Enter the name of the voice command:','s');
file(i) = sprintf('%s.wav',name);
end

回答(1 个)

Walter Roberson
Walter Roberson 2014-1-17
file{i} = sprintf('%s.wav',name);
Notice the (i) changed to {i}

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by