How to call sigmoid function inside runge kutte orde 4? Is it possibel?
조회 수: 1 (최근 30일)
이전 댓글 표시
I have sigmoid function and I want to call that function with runge kutte, how to call function inside function?
댓글 수: 0
채택된 답변
Image Analyst
2023년 6월 3일
편집: Image Analyst
2023년 6월 3일
To call a function from within another function, just call the function by name and pass it the arguments it wants. For example, to have it call a function called "function2" inside another function called "function1", do this:
function function1()
output = function2(input1, input2, input3);
end
Make sure you give the "inside" function whatever arguments it needs.
To learn other fundamental concepts, invest 2 hours of your time here:
댓글 수: 2
Image Analyst
2023년 6월 3일
Why did you not assign values for, and pass the variables in for, K1,K2,M1,M2,M3,O,P,S? Why did you call fRK4M1 with not enough (any actually) input arguments? Did you think MATLAB would just somehow automatically invent values for those variables? It won't. You have to assign them.
What is the name of your m-file? It appears to be fRK4M1.m, which is the name of a nested function. It should be sigmoid.m, which is the outermost function. And you need to assign and pass in M1 when you call sigmoid().
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!