I want a library from a group of .m files for using in matlab
Mostra commenti meno recenti
Hi
I have two .m files:
function z=*Sum*(x,y)
z=x+y;
end
function z=*Subtraction*(x,y)
z=x-y;
end
I want a library from two files. I want use this library in matlab. I want to invoke Sum and Subtraction from this library and get their outputs.
with mcc -m i does not have a .dll file, but .exe file. I want dll file from Sum.m and Subtraction.m.
This line can not help me: mcc -t -L C -W lib:mylib -T link:lib Sum.m Subtraction.m libmmfile.mlib
Risposte (3)
Shashank Prasanna
il 22 Giu 2013
0 voti
Maybe this is useful?
aazam
il 22 Giu 2013
aazam
il 24 Giu 2013
Categorie
Scopri di più su C Shared Library Integration in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!