Keep getting "too many input arguments"
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
L McKeehan
il 14 Set 2021
Risposto: Cris LaPierre
il 14 Set 2021
Hi, I keep getting
Error using lm25119_calcs/HsFETlosses
Too many input arguments.
for the attached class when I do the following:
a = lm25119_calcs
b = a.HsFETlosses(a,1)
0 Commenti
Risposta accettata
Cris LaPierre
il 14 Set 2021
Methods are called just like functions, with the object passed in as one of the arguments. Try this:
a = lm25119_calcs;
HsFETlosses(a,1)
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB 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!