Constant already used When creating function handle
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Gavin Seddon
il 18 Mag 2016
Commentato: Steven Lord
il 18 Mag 2016
I am trying to create a handle for a Function, I received two errors:
Error:
Expression or statement is incomplete or incorrect.
Error: "p1" was previously used as a variable, conflicting with its use here as the name of a function or command.
I am attempting to create a new function handle for an existing function created using the curve fit tool.
The syntax I use is
x = @fun;
will someone please correct this command?
Gav
0 Commenti
Risposta accettata
Walter Roberson
il 18 Mag 2016
If fun is already a function handle, then you can try
x = fun;
or
x = @(varargin) fun(varargin{:})
4 Commenti
Steven Lord
il 18 Mag 2016
Please show a SMALL, self-contained example (that people can execute as part of their investigation) and the FULL text of the error message you receive when you execute that self-contained example.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Control Flow 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!