a method to call matlab code from a language programming
Mostra commenti meno recenti
hi, I want a method to call matlab code from a language programming vb.net, java, c # or php any video, documents, source code will be welcome thank you in advance
Risposte (2)
A Jenkins
il 20 Mag 2014
Have you looked at the MATLAB COM Automation Server ? There are several examples on the website. Or you can type
doc automation
Simple VB Code would look like this:
Dim Matlab As Object
Dim server_version As String
Matlab = CreateObject("matlab.application")
server_version = Matlab.Execute("version")
3 Commenti
remos remos
il 20 Mag 2014
A Jenkins
il 20 Mag 2014
Another option is to convert your MATLAB code to standalone code, using MATLAB Coder or MATLAB Compiler, if you have access to these toolboxes and your code is compatible.
remos remos
il 21 Mag 2014
Image Analyst
il 21 Mag 2014
0 voti
Try the Builder NE toolbox.
Categorie
Scopri di più su COM Component 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!