Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

Store character in a array possible?

1 view (last 30 days)
JOJO
JOJO on 17 Jan 2014
Closed: MATLAB Answer Bot on 20 Aug 2021
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

Answers (1)

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

This question is closed.

Community Treasure Hunt

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

Start Hunting!