Check for missing argument or incorrect argument data type in call to function 'new'.
Mostrar comentarios más antiguos
I could not find the answer. I am missing something
Respuestas (1)
Reshma Nerella
el 5 de Abr. de 2021
0 votos
Hi,
The reason behind the error is that,
You are using 2 different names for function name and file name i.e new and Ve.
In MATLAB, if the function has only one function definition, the name of the file must match the name of the function.
So consider either of the following
- Naming your file to new
- Naming your function to Ve
To know more about functions, refer to the documenation page: functions
2 comentarios
Walter Roberson
el 5 de Abr. de 2021
Not exactly, but related.
MATLAB has function files (first word is "function"), and class definition files (first word is "classdef") and script files (all other matlab source code.)
Function files have a file name, and can contain multiple functions. However the first function in the file will be known by the file name no matter what (valid) name is present in the file definition. This is true both for calling from inside the file and for calling from outside the file.
The user might have tried to call new() from outside the file Ve.m expecting that matlab would find new() inside Ve. However matlab would know that function as Ve, and so if the user tried to call new() it would have been some other new() that was called.
Altan Kerem Yavuz
el 5 de Abr. de 2021
Categorías
Más información sobre Variables en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!