How to give input values for this flag representation?
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi Users, DisplayFlag = flag indicating whether to display and plot results. What value should give as input?
댓글 수: 0
답변 (1개)
Image Analyst
2014년 8월 18일
I would pass in true if you want the results plotted/displayed and pass in false if you don't want them plotted/displayed.
% Plot results
myFunction(true);
% Do not plot results
myFunction(false);
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!