Borrar filtros
Borrar filtros

problem with inputting function handle without using a separate function file

1 visualización (últimos 30 días)
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

Respuesta aceptada

Robert
Robert el 15 de Abr. de 2014
that form works, thank you so much!!!

Más respuestas (1)

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

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by