필터 지우기
필터 지우기

how can i merge different codes in the main function?

조회 수: 2 (최근 30일)
Anu  Sri
Anu Sri 2018년 8월 6일
댓글: Anu Sri 2018년 8월 6일
i am performing quadtree decomposition which required the use of different functions.i have separate code for all the required tasks.I need to merge the different functions in the main fuction so that i can have only one code instead of many separate codes.Any thoughts on how i can perform it?

채택된 답변

Stephan
Stephan 2018년 8월 6일
편집: Stephan 2018년 8월 6일
Hi,
you can insert as many functions as needed at the end (behind the code section) of your main script:
some code in the main script;
defining some values in main script;
calculate something;
call function_1();
do some stuff;
do more stuff;
call function_2();
do as much stuff as posible;
call function_3();
plot result;
write something to somewhere;
function some_stuff = function_1(x,y)
...
end
function some_more_stuff = function_2(z)
...
end
function final_stuff = function_3(x,y,z)
...
end
That way you could insert all code from your seperate functions into your main script and run it in one script file. Thats what you wanted to do?
Best regards
Stephan
  댓글 수: 3
Stephan
Stephan 2018년 8월 6일
In that case matlab gives you an error message - it wants the functions at the end of the script. Since it is a copy & paste action i recommend to try this - i learned i that way ;-)
Anu  Sri
Anu Sri 2018년 8월 6일
okay thankyou sir,i will follow it that way.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by