How to use a vector as input for a function?
Mostrar comentarios más antiguos
I have the following m file:
function [Data] = calc_file(u)
where I would like to enter u as a vector. When I try to do this I get the following error:
>> calc_file(u)
??? Undefined function or method 'calc_file' for input
arguments of type 'double'.
How do I enter a vector as the input for a function?
1 comentario
Star Strider
el 16 de Mayo de 2014
You need to post the code for calc_file.
Respuestas (1)
Henric Rydén
el 16 de Mayo de 2014
0 votos
From your question, you seem to get this error only when u is a vector and not when it is a scalar?
It looks like the calc_file.m is not on your path.
2 comentarios
Jeroen
el 16 de Mayo de 2014
Henric Rydén
el 19 de Mayo de 2014
OK, could you post the code in calc_file.m?
Categorías
Más información sobre Get Started with MATLAB 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!