How to skip error and continue (NOT in loop)?
이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
이전 댓글 표시
If I have the following code, how to display x(10) after x(9999) causing an error?
x = ones(1, 10);
try
x(1)
x(9999)
x(10)
catch ME
fprintf(ME.message)
end
The output I got is:
ans =
1
Index exceeds the number of array elements (10).
Thanks!
채택된 답변
Walter Roberson
2019년 4월 5일
x = ones(1,10);
idx = [1 9999 10];
for K = 1 : length(idx)
try
x(K)
catch ME
fprintf(ME.message)
end
end
댓글 수: 8
Thanks Walter, this works good.
So I assume if I have several user-defined functions, the only way to guarantee all functions get executed in a single run is to have several independent try-catch blocks or somehow put those functions in a loop?
%% GOOD
try
myfun1()
catch ME
end
try
myfun2()
catch ME
end
%% BAD
try
myfun1()
myfun2()
catch ME
end
funcs = {@myfun1, @myfun2};
for K = 1 : length(funcs)
try
funcs{K}();
catch ME
fprintf(ME.message);
end
end
Fernando
2023년 5월 11일
What is the part of "not in a loop" you didn't understand?
I'm not sure which part of "not in a loop" I did not understand. Perhaps you could explain?
if one has commands that truly cannot be done in a loop, then how can you skip a command error without having to try/catch every single command?
say:
A = command1thatcanpossiblycauseanerror;
B = command2thatcanpossiblycauseanerror;
C = command3thatcanpossiblycauseanerror;
D = command4thatcanpossiblycauseanerror;
E = command5thatcanpossiblycauseanerror;
F = command6thatcanpossiblycauseanerror;
G = command7thatcanpossiblycauseanerror;
H = command8thatcanpossiblycauseanerror;
I = command9thatcanpossiblycauseanerror;
J = command10thatcanpossiblycauseanerror;
K = command11thatcanpossiblycauseanerror;
L = command12thatcanpossiblycauseanerror;
M = command13thatcanpossiblycauseanerror;
N = command14thatcanpossiblycauseanerror;
O = command15thatcanpossiblycauseanerror;
P = command16thatcanpossiblycauseanerror;
Q = command17thatcanpossiblycauseanerror;
R = command18thatcanpossiblycauseanerror;
S = command19thatcanpossiblycauseanerror;
T = command20thatcanpossiblycauseanerror;
U = command21thatcanpossiblycauseanerror;
V = command22thatcanpossiblycauseanerror;
W = command23thatcanpossiblycauseanerror;
X = command24thatcanpossiblycauseanerror;
Y = command25thatcanpossiblycauseanerror;
Z = command26thatcanpossiblycauseanerror;
%where each commandXXthatcanpossiblycauseanerror is some command, really
%anything, something that cannot possibly be in a for loop.
%as the author asked.
as the author asked
Sorry, could you explain to me where the author of the original question asked that?
A = command1thatcanpossiblycauseanerror;
B = command2thatcanpossiblycauseanerror;
C = command3thatcanpossiblycauseanerror;
D = command4thatcanpossiblycauseanerror;
% etc
That has a similar code smell to the frequently asked question about dynamically creating variables with numbered names like x1, x2, x3, etc., for which the general consensus is to avoid doing that.
Rather than posing a hypothetical scenario, can you share a little more detail about your actual application where you use a pattern like that code? What do those commands that can possibly throw an error do? Are they independent or are the outputs of one or more of those functions the inputs to later of those functions?
I am having difficulty thinking of any code that is such that
A = command1thatcanpossiblycauseanerror;
is valid code, but
for dfpSzcGKKqyMbgIcvYXqkicEiRRKtIUpb_vjDshBQupYrSfhm_GS_xNidaex = 1 : 1
A = command1thatcanpossiblycauseanerror;
end
"cannot" work.
The only things I can come up with are along the lines of "needing" dbstack to be able to pinpoint the function name... ummm, no, even that would not explain things.
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Programming에 대해 자세히 알아보기
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
