ismember legacy flag with older Matlab
조회 수: 6 (최근 30일)
이전 댓글 표시
If I use the legacy flag of ismember function in Matlab prior to 2012b like this
if ismember(A,B,'rows','legacy') do something... end
I get too many input arguments -error.
I'd like my code to work on both, earlier and newer Matlabs so how can omit the legacy flag if older matlab is used. I really don't want to make separate if-clauses in case of older and newer versions because there are so many of them.
댓글 수: 0
채택된 답변
Friedrich
2014년 8월 25일
Hi,
an IF clause is the only way here.
You could write your own small helper function which calls ismember and deals with the versions. So something like (haven't actually tried it but something like this should do it):
function [Lia,Locb] = myismember(A,B,flag)
if flag_was_provided AND MATLAB_version_is_smaller_than_8
[Lia,Locb] = ismember(A,B)
else
[Lia,Locb] = ismember(A,B,flag)
end
end
댓글 수: 2
Friedrich
2014년 8월 25일
But the built in functions in 14a are not the same in 12a or so. Saying that the image function in 12a does not pass down the 'legacy' flag. So you don't have to worry about that.
You would need to adjust your code only and replace your ismember call with a dummy function which handles the argument conversion. Basically do NOT overload ismember. Only adjust your code to not call ismember directly.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Axis Labels에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!