Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Finding the first element of a 1-D array that yields a negative result.
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I then want to assign this element of the array to a different variable.
0 Commenti
Risposte (1)
Kaushik Lakshminarasimhan
il 19 Gen 2018
x = normrnd(0,1,[1,20]); % generate 20 random numbers
y = x(find(x<0,1)); % assign the first negative random value to y
0 Commenti
Questa domanda è chiusa.
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!