Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how to ask the User to inform elements to compose a matrix

2 ビュー (過去 30 日間)
felipe gonzalez
felipe gonzalez 2015 年 8 月 2 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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

回答 (2 件)

Azzi Abdelmalek
Azzi Abdelmalek 2015 年 8 月 2 日
編集済み: Azzi Abdelmalek 2015 年 8 月 2 日
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

Matt J
Matt J 2015 年 8 月 2 日
編集済み: Matt J 2015 年 8 月 2 日
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 件のコメント
felipe gonzalez
felipe gonzalez 2015 年 8 月 3 日
nice browwwwww ... tnkxxxx

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by