필터 지우기
필터 지우기

the matlab way of preprocessor macros

조회 수: 17 (최근 30일)
Andreas Lobinger
Andreas Lobinger 2012년 6월 5일
댓글: Bruno Luong 2018년 9월 21일
To make my code more readable i'd like to move some hard coded values like b_index = find(all_user_state == 24); to something like b_index = find(all_user_state == UNCONNECTED); which i would do in C-style with #define.
What would you recommend in Matlab. I already thought about enum and collect the definitions in a def. struct, but would have then the problem to propagate this in all scopes.
  댓글 수: 1
Bruno Luong
Bruno Luong 2018년 9월 21일
The lack of preprocessing is to me a serious drawback in MATLAB. Define static, persistent variable(s) or in function will slow down greatly when one to access to it compared to a direct hard-code value.

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

답변 (2개)

Wil Koenen
Wil Koenen 2018년 9월 21일
Define a class containing the definitions, either using constant properties (1) or enumeration values (2).
Example (1)
classdef MyDef
properties(Constant)
UNCONNECTED = 24
CONNECTED = 25
% more definitions
end
end
Use as follows:
b_index = find(all_user_state == MyDef.UNCONNECTED)
Example (2)
classdef MyEnum < int32
enumeration
UNCONNECTED(24)
CONNECTED(25)
% more definitions
end
end
Use similarly:
b_index = find(all_user_state == MyEnum.UNCONNECTED)

Walter Roberson
Walter Roberson 2012년 6월 5일
You can use static methods of a class.
You can define UNCONNECTED as a function that returns 24 .

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by