Matlab function takes 1 argument, Java caller provides 2
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
% 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 Commenti
Risposta accettata
Walter Roberson
il 23 Ott 2020
The first input to a generated function is the number of left-hand sides.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Java Package Integration in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!