How can I convert the MATLAB function in to JAVA?
Mostrar comentarios más antiguos
I have implemented some techniques using different algorithm of MATLAB, now I have to make it web enabled using JAVA. I am using MATLAB2012b version. Can It be possible to convert all the code in to JAVA? and if possible then what functions are required to implement
Respuesta aceptada
Más respuestas (1)
Qasem Makki
el 8 de Dic. de 2021
0 votos
function AddClientButtonPushed(app, event)
if app.AddClient
disp('*** Take it easy dude, I''m working...');
else
app.AddClient = true;
end
% node = app.nodes.add_client(app.AddressEditField.Value, app.RemotePortEditField.Value, app.LocalPortEditField.Value);
% if ~isempty(node)
% try
% node.transmit(p2p.MessageType.QUERY_LATEST, []);
% catch ME
% disp('*** Node not replying');
% end
% end
end
Categorías
Más información sobre Call Java from MATLAB en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!