how to ask the User to inform elements to compose a matrix
Informazioni
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Mostra commenti meno recenti
for example:
I ask him the first element, then the second and so on accumulating in the vector.
what I did was
Neuron = [ ] ;
for j=1:(b-1)
p = input ('enter the number of the neurons', j, 'layer');
neuron = [neuron p];
end
it happens that when I thus gives error the message is matlab
Too many input arguments.
please someone help me
thank you very much
Risposte (2)
Azzi Abdelmalek
il 2 Ago 2015
Modificato: Azzi Abdelmalek
il 2 Ago 2015
I think it always gives error.
b=4
Neuron = zeros(1,b-1) ;
for jj=1:b-1
p = input ('enter the number of the neurons');
Neuron(jj) = p;
end
Something like this, maybe.
Neuron = nan(1,b-1); ;
for j=1:(b-1)
Neuron(j) = input (['Enter the number of neurons in layer #' num2str(j) ': ']);
end
1 Commento
felipe gonzalez
il 3 Ago 2015
Questa domanda è chiusa.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!