필터 지우기
필터 지우기

problem with inputting function handle without using a separate function file

조회 수: 1 (최근 30일)
Hi Ive wrote a function called T with inputs f,a,b,n. im not having problems with the a,b,n input values but when i try to input the function handle f the T function prints an error the only way i can stop this is to put the function handle f in a separate function file and us commands like this T(@f,a,b,n) but id like to write T(x,a,b,n) for the function x, how can i do this? thanks

채택된 답변

Robert
Robert 2014년 4월 15일
that form works, thank you so much!!!

추가 답변 (1개)

Walter Roberson
Walter Roberson 2014년 4월 15일
f = @(x) sin(x);
T(f, a, b, n)
If this form does not work then please show your error messages.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by