error: Array indices must be positive integers or logic
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti

please help
0 Commenti
Risposte (2)
Walter Roberson
il 2 Feb 2024
Due to floating point round-off, the result A+(B*x(i)) might not be exactly an integer. You should round() it.
2 Commenti
Walter Roberson
il 2 Feb 2024
You have not posted enough context to really give you an answer.
But I suspect that you should have made x one element shorter. Something along the line of
x = linspace(xmin, xmax, number_of_steps+1);
x = x(1:end-1);
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
