how take a mathematical function from user
이전 댓글 표시
How can i take F and G from the user to use them in a function if i have F=@(x,y) x./y;
and G=@(x) sqrt(x.^2+1); ?
댓글 수: 4
Dyuman Joshi
2021년 5월 8일
You mean, you want the user to input x and y and get the F and G values?
Jonas
2021년 5월 8일
if you really want to be able to let the user enter matlab code (a function), then you may use feval().
Ahmed Amin
2021년 5월 8일
Ahmed Amin
2021년 5월 8일
답변 (1개)
What do you mean when you say you want "the user to enter" the function in your comment?
Do you want the user to have to pass some thing into your function that lets your function call a function of their choosing? If so you want your user to define a function handle (which could be an anonymous function.)
f1 = @(x, y) x./y; % anonymous function
z1 = integral2(f1, 0, 1, 1, 2) % integral2 will call the function f with inputs of its choice
f2 = @sin; % regular function handle
z2 = integral(f2, 0, pi)
Or do you want to have the user enter the text of a function in say an edit box in a dialog or UI? In that case you should use str2func.
s = 'x./y';
f3 = str2func(['@(x, y)' s]); % make an anonymous function which is a function handle
z3 = integral2(f3, 0, 1, 1, 2)
% or
f4 = str2func('sin'); % make a regular function handle
z4 = integral(f4, 0, pi)
Or did you have a different meaning in mind? In this case, please explain what you want to do in more detail.
카테고리
도움말 센터 및 File Exchange에서 Function Handles에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
