How can I use Function handle with arrays?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Raja Vardhan Reddy Kothakapu
el 14 de Mayo de 2019
Comentada: Raja Vardhan Reddy Kothakapu
el 14 de Mayo de 2019
I'm trying to use function handle with arrays. My objective is to create a function which picks a particular element of one dimensional row matrix. It need to output the particular element when I pass matrix and index as arguments. I know there are other ways to do this, but I'm very much interested to see whether this task can be done by function handle or not
Thanks
syms I t
G = matlabFunction(I(t))
A = [1 2 3];
G(A,1)
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!