hey, could somebody please help me understand and resolve this error?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Réponse acceptée
Walter Roberson
le 29 Sep 2023
function y = inputSource(~)
is not how you would define a function that accepts more than one input parameter but ignores the inputs. Each ~ in the calling sequence ignores exactly one input parameter.
You should use one of:
function y = inputSource(~,~,~)
to ignore 1, 2, or 3 input parameters. Or you should use
function y = inputSource(varargin)
to accept any number of input sources (not actually ignoring them completely, but you do not have to use varargin in your code)
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!