Keep getting "too many input arguments"

1 visualización (últimos 30 días)
L McKeehan
L McKeehan el 14 de Sept. de 2021
Respondida: Cris LaPierre el 14 de Sept. de 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)

Respuesta aceptada

Cris LaPierre
Cris LaPierre el 14 de Sept. de 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)

Más respuestas (0)

Categorías

Más información sobre Construct and Work with Object Arrays en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by