Thread: Matlab
View Single Post
Old 07-25-2003, 08:34 AM   #20 (permalink)
dimbulb
Riiiiight........
 
seems that all of them have different inputs, so you should do it in 4 different .m files.

subfunctions within a function .m file can only be called within the .m file, so if you want to write a function that can be called by other functions, write it as a separate .m file.

to output things from a .m file

function [variable1, variable 2] = filename(input1, input2)

where inputXX is your inputs, filename is the name of your function, and variableXX is what you wish to output.
dimbulb is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47