Matlab function takes 1 argument, Java caller provides 2
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
% 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 commentaires
Réponse acceptée
Walter Roberson
le 23 Oct 2020
The first input to a generated function is the number of left-hand sides.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Java Package Integration dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!