how to send the value of a Java variable to a matlab variable when the matlab session is accessed in Java?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Shruthi Ramakumar
el 24 de Sept. de 2017
Respondida: Jatin Waghela
el 2 de Oct. de 2017
Hello,
I am using " matlab.engine.shareEngine" concept for accessing matlab in Java.
I wanted to know how to send/assign the value of a java variable to a matlab variable.
for example:
int i=4;
Future<Void> vFuture = eng.evalAsync("x=i;");
I also tried eng.feval("x",i);
but it is giving the following error:
Undefined function or variable 'x'.
Please help me regarding which function do we need to use?
Thanks & Regards,
Shruthi Ramakumar
0 comentarios
Respuesta aceptada
Jatin Waghela
el 2 de Oct. de 2017
Please refer to the below documentation link which gives more information and examples:
MATLAB API for Java:
and
Pass variables from Java to MATLAB:
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Call Java from MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!