I have a matlab function file which contains the main function which calls on many subfunctions. I would like to look at the output of the subfunctions in my program. How do I do this?
As it is now I have been making separate scripts to see what the output is of each of the individual subfunctions, I do not want to have to do it this way anymore.

 채택된 답변

Adam
Adam 2014년 8월 19일

0 개 추천

If you just want to have a look at them then put breakpoints in the file containing your main function and you can see the intermediate outputs in your function's workspace.
If you want the intermediate outputs to persist then just add them as output arguments of your main function.

댓글 수: 3

richard
richard 2014년 8월 19일
OK this has seemed to be the easiest to implement, however I have a FOR loop in my main function. How can I see the value of something in the loop at a particular iteration?
This is a way of doing it.
if iteration_number == desired_value
keyboard % this lets you do stuff other than just see a value
disp(value_of_interest) %this just prints it to screen
end
Put a conditional breakpoint in based on the for loop control. If you add a breakpoint and right-click you get the option to 'Set / Modify condition'. In there you can put, for example:
i >= 15
if you have a for loop like:
for i = 1:100
...
end
In that example then your breakpoint will first hit at i == 15 and then if you press F5 it will hit again every iteration until the end. If you just want it to hit once then make your condition something like i == 15;

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

추가 답변 (2개)

John D'Errico
John D'Errico 2014년 8월 19일

0 개 추천

From your main function, return function handles for each subfunction. Then you can use them as independent functions.
Image Analyst
Image Analyst 2014년 8월 19일

0 개 추천

You can make one m-file for them all. For example in test.m, you can have test(), sub1() and sub2() all in one single file:
function test()
out1 = sub1(10)
out2 = sub2(20)
function out = sub1(in)
fprintf('in = %f', in); % Or whatever you want to do.
function out = sub2(in)
fprintf('in = %f', in); % Or whatever you want to do.

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2014년 8월 19일

댓글:

2014년 8월 19일

Community Treasure Hunt

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

Start Hunting!

Translated by