Borrar filtros
Borrar filtros

Error using feature_vec (line 8) Not enough input arguments.

2 visualizaciones (últimos 30 días)
sujit
sujit el 7 de Nov. de 2014
Respondida: David Sanchez el 7 de Nov. de 2014
when run The Seven Invariant Moments code is show Error using feature_vec (line 8) Not enough input arguments. where is the error

Respuestas (1)

David Sanchez
David Sanchez el 7 de Nov. de 2014
The error is that you are not calling the function with enough arguments. For example, if you call you function feature_vec like this:
feature_vec(a,b)
where a and b are variables within your code
but the feature_vec is defined like this:
feature_vec(x,y,z)
it expects at least 3 input arguments, and when you call it with just two, it returns the error you receive. Take a look at the definition of your feature_vec function and make sure you use it properly.

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by