Effacer les filtres
Effacer les filtres

Function not defined error

2 vues (au cours des 30 derniers jours)
kajalschopra
kajalschopra le 3 Août 2015
Commenté : Walter Roberson le 4 Août 2015
Hi,
I have the following code snippet;
function [mass]=ElementMassMatrix1Bar(rho_E,A_E,E_C,N_C,element_no,p,n_dof)
J=Jacobian(element_no,E_C,N_C);
The function Jacobian is defined in another .m file.
I had thought I should be able call it.
But I get an error that,
function JAcobian not defined.
I am finding it funny because the function JAcobian is called inside another function (say 'X') but X being located in the same .m file as JAcobian.
But when I call JAcobian from a function located in another .m file, it says function not defined error,
Please can anyone help..
Thanks a lot.

Réponse acceptée

Walter Roberson
Walter Roberson le 3 Août 2015
Be careful with JAcobian vs Jacobian -- MATLAB considers the two to be different names.
In order to call a function in another file, the file must be named the same thing as the function and the function must be the first thing in the file. The exception to this is if the first function in the file creates a handle to the desired function and puts the handle in a useful place (such as returning it.)
  4 commentaires
kajalschopra
kajalschopra le 4 Août 2015
Modifié(e) : kajalschopra le 4 Août 2015
Thank you. And, last one, I have a set of programs in D:\directoryX and another set of programs in D:\directoryY
I have ElementJacobian .m file (and the first function in the ElementJacobian.m file named as ElementJacobian) in D:\directoryX
I want to call ElementJacobian from D:\directoryY
Is it possible? How? Thanks again, Kajal
Walter Roberson
Walter Roberson le 4 Août 2015
See addpath() and pathtool()

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by