필터 지우기
필터 지우기

function handle with input parameters

조회 수: 2 (최근 30일)
min lee
min lee 2024년 5월 1일
댓글: Star Strider 2024년 5월 1일
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?

채택된 답변

Star Strider
Star Strider 2024년 5월 1일
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
min lee
min lee 2024년 5월 1일
편집: min lee 2024년 5월 1일
@(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 2024년 5월 1일
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);
.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by