삽질예방/Matlab
Profiler
Kwang-sung Jun
2009. 7. 1. 19:32
프로파일링
함수 호출 횟수와 수행 시간 등을 보여준다.
테스팅에 편리할듯..
profile on
for i=1:100
out = myfunc(in);
end
profile viewer
for i=1:100
out = myfunc(in);
end
profile viewer
함수 호출 횟수와 수행 시간 등을 보여준다.
테스팅에 편리할듯..