- max(m*abs(f(a:b,:)))
- ath
how to solve 'Too many input arguments' error?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am writing a code in which i am getting an error on line 119 which is... y=log(max(m*abs(f(a:b,:))),ath);
I am getting an error saying.. Error using log Too many input arguments. I have attached the .m file below
0 commentaires
Réponse acceptée
Adam Danz
le 26 Sep 2018
Modifié(e) : Adam Danz
le 26 Sep 2018
help log
log(X) is the natural logarithm of the elements of X.
Complex results are produced if X is not positive.
You'll see that log() has one input. You are shoving in two inputs:
You must remove one.
2 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!