Effacer les filtres
Effacer les filtres

function handle with input parameters

2 vues (au cours des 30 derniers jours)
min lee
min lee le 1 Mai 2024
Commenté : Star Strider le 1 Mai 2024
I need to invoke the 'eigs' function to calculate the lowest eigenvalue of a hermitian matrix, which I do not construct explicitly. I thus use a function handle to realize the action of the matrix on a vector. My code is like this
[evector, evalue]=eigs(@fun_Htimesx, dim, 1,'smallestreal');
In the function 'fun_Htimesx', I have
function y = fun_Htimesx(x)
global H transx_many transy_many qx qy Lx Ly
That is, the hermitian matirx 'H' and many other parameters are set as global variables so that I do not need to pass them to the function handle.
Now, my question is, how can avoid global variables? How to pass parameters to a function handle?

Réponse acceptée

Star Strider
Star Strider le 1 Mai 2024
I am not certain that I understand what you want to do.
One approach:
function y = fun_Htimesx(x, H , transx_many, transy_many, qx, qy, Lx, Ly)
If you only want to pass ‘x’ to it (for example in an optimisation function call), the function handle becomes:
@(x)fun_Htimesx(x, H , transx_many, transy_many, qx, qy, Lx, Ly)
providing that all the other argumnents are already present in the calling script (or function script) workspace. Otherwise, just pass ‘x’ to it if that is the only argument that changes. The others will be passed automatically, providing they are preseent in the calling script (or function script) workspace.
.
  2 commentaires
min lee
min lee le 1 Mai 2024
Modifié(e) : min lee le 1 Mai 2024
@(x)fun_Htimesx(x, H , transx_many, transy_many, qx, qy, Lx, Ly)
I got an error message 'too many input arguments'.
All other arguments like 'H' are parameters defining the hermitian matrix, which do exist in my script workspace. That is why I set them as global.
Star Strider
Star Strider le 1 Mai 2024
If you want to use all of them to calculate ‘y’ use this approach:
y = fun_Htimesx(x, H , transx_many, transy_many, qx, qy, Lx, Ly);
.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by