|
"Henrik " <henrikNOSPAM@lanl.gov> wrote in message
news:fcbnen$rdu$1@fred.mathworks.com...
> Hey
> I was wondering if matlab supports adding all text from a
> .m-file (not a function file just code that runs buy it
> self) to another .m file that I'm running.
> Like php scripts that you can import anywhere in your php
> file buy just typing include(FILENAME).
No, not directly.
If you're trying to call the main function of another file inside your first
file, just call it like any other MATLAB function.
If you're trying to call a subfunction in the second file from within your
first file, you can have the main function in the second file be a
"switchyard" that accepts the name of the subfunction to call:
% begin switchyard.m
function y = switchyard(fcn, x)
% Call as:
% y = switchyard('mycos', 1:10);
% or
% y = switchyard('mysin', pi);
y = feval(fcn, x);
function y = mycos(x)
y = cos(x);
function y= mysin(x)
y = sin(x);
% end switchyard.m
or you can have the main function return a handle to the subfunction and
call them that way:
% begin createhandles.m
function s = createhandles
% Call as:
% s = createhandles
% y1 = s.mycos(1:10);
% y2 = s.mysin(pi);
s.mycos = @mycos;
s.mysin = @mysin;
function y = mycos(x)
y = cos(x);
function y= mysin(x)
y = sin(x);
% end createhandles.m
If the other file is a script, just run it by typing the name of the script.
--
Steve Lord
slord@mathworks.com
|