how to use passing by value and passing by reference

조회 수: 9 (최근 30일)
RAHUL KUMAR
RAHUL KUMAR 2019년 10월 30일
댓글: Walter Roberson 2019년 10월 30일
Basically i have many variables in my code , so i want to use in my function just passing by value and reference. Can anybody tell me with example.

채택된 답변

Nicolas B.
Nicolas B. 2019년 10월 30일
I highly recommend you to check the basic types of MATLAB. There is not such thing as a reference in MATLAB. However, for classes, you can create handle classes which works as reference. But then, you can give them by value. If you want to use that feature, read the Comparison of Handle and Value Classes.
Otherwise, if it is just to reduce the number of inputs of a function, you can use structures (or classes).
  댓글 수: 3
Nicolas B.
Nicolas B. 2019년 10월 30일
I don't see any way MATLAB could offer you better than structures or classes. But using classes requires to write their descriptions.
Walter Roberson
Walter Roberson 2019년 10월 30일
If the issue is reducing the number of variables passed because passing that many variables is a nuisance, then consider using nested functions with shared variables.

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

추가 답변 (1개)

James Tursa
James Tursa 2019년 10월 30일
In the background, MATLAB effectively passes all variables into functions as shared data copies. This has the same effect as passing by reference for variables that you don't modify inside the function, i.e. you don't get a deep data copy. Is this what you are asking about?
  댓글 수: 2
RAHUL KUMAR
RAHUL KUMAR 2019년 10월 30일
yeah can you provide some example to better understanding
Steven Lord
Steven Lord 2019년 10월 30일
Can you tell us a bit more information about how you've defined your function, how you're trying to call it, and the particular problem / pain / difficulty you're experiencing when trying to call it? With a bit more information we may be able to suggest an easier / faster / "better" solution for calling your function.

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

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by