Matlab function takes 1 argument, Java caller provides 2
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
FM
el 23 de Oct. de 2020
% makesqr.m
%----------
function y = makesqr(x)
y = magic(x);
This gets generated into a Java package. However, the `step 16` of the Java invoker shows `makesqr` with *two* arguments.
result = theMagic.makesqr(1, n);
Can anyone please explain this difference in the number of arguments?
0 comentarios
Respuesta aceptada
Walter Roberson
el 23 de Oct. de 2020
The first input to a generated function is the number of left-hand sides.
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Java Package Integration 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!