필터 지우기
필터 지우기

How to define a nested function inside a for loop?

조회 수: 10 (최근 30일)
vikas mishra
vikas mishra 2017년 12월 1일
댓글: vikas mishra 2017년 12월 1일
I wish to define a nested function inside a for loop. When I did it I encountered an error. When I further inquired I found the following:
``You cannot define a nested function inside any of the MATLAB® program control statements, such as if/elseif/else, switch/case, for, while, or try/catch."
which is available at
https://www.mathworks.com/help/matlab/matlab_prog/nested-functions.html#btfml3d
Any by pass to this? Can I define a nested function inside a loop?
Thank you.
  댓글 수: 4
Matt J
Matt J 2017년 12월 1일
Your attached files contain neither loops nor nested functions. They therefore cannot clarify where you are trying to place a nested function, nor why you think it needs to go inside a loop.
vikas mishra
vikas mishra 2017년 12월 1일
@ Matt J, Thanks. Yes, you are correct that attached files contain neither loops nor nested functions. As I already wrote that I want to put my theta_0 in the for loop form 0 to 21, so that I do not need to update it manually. You van see that theta_0 is in two files, so I made a single file with nested functions. However, I have to put one nested function inside a for loop. This is the difficulty. If you have any other way to do it please let me know. For your kind perusal, I have also attached the updated file with nested functions.
In short, my question is how to put a for loop for theta_0 varying between 0 to 21.
Thanks

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

답변 (1개)

Matt J
Matt J 2017년 12월 1일
편집: Matt J 2017년 12월 1일
There should be no need to place a nested function definition inside a loop. My advice would be to simply move it outside the loop, placing it somewhere else in the same workspace. As long as the nested function resides in the same workspace as the loop, they should both have access to all variables in that workspace.

카테고리

Help CenterFile Exchange에서 Debugging and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by