From: YAG on
call f1 into b.m file , from a.m file
From: someone on
YAG <yagyog(a)tiscali.it> wrote in message <1706141999.23341.1279049055859.JavaMail.root(a)gallium.mathforum.org>...
> call f1 into b.m file , from a.m file

If you are trying to execute a subfunction
from a separate (out-of-scope) M-file, it can
be done, but you must use a function handle.

doc function_handle

and look at the second paragraph in the Description section.
From: YAG on
example of code ?
From: Andy on
YAG <yagyog(a)tiscali.it> wrote in message <248247979.29453.1279133028331.JavaMail.root(a)gallium.mathforum.org>...
> example of code ?

We might ask you the same thing. What have you tried? And how did it not work as expected?
From: YAG on
yes!

%file m1func.m
function [ output_args ] = a( input_args )



%file m2callfunc1.m

put the code to call function a.....