Matlab function takes 1 argument, Java caller provides 2
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?
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Deploy to Java Applications Using MWArray Data API in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!