Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
3k views

Calling matlab callback/function handle from Java

How do I pass a matlab function handle to a Java object and invoke it from within Java (that is, I want Java to tell matlab when it is ready with a calculation). I am trying to use the ...
4
votes
1answer
4k views

How can I create function pointers from a string input in MATLAB?

If I use the inline function in MATLAB I can create a single function name that could respond differently depending on previous choices: if (someCondition) p = inline('a - b','a','b'); else p = ...
4
votes
1answer
5k views

MATLAB- passing a function handle parameter into another function as a handle

Working on an assignment involving Genetic Algorithms (loads of headaches, loads of fun). I need to be able to test differing crossover methods and differing mutation methods, to compare their results ...
2
votes
3answers
49 views

Get the derivative of a function_handle in MATLAB

Is it possible to get the derivative of a function_handle as a other function_handle? Like: fun1 = @(x) x^2; % do that ... disp(fun2); @(x) x*2 I know how to find the derivative of a ...
2
votes
2answers
28 views

Creating an anonymous function and calling it passing arguments in one line in MATLAB

You can do in matlab something like this: >> fh = @(x) x^2 fh = @(x)x^2 and then >> fh(3) ans = 9 Now I look for a way to create the anonymous function and call it in one ...
0
votes
1answer
46 views

Vectorising a function array in Matlab

My generic problem is illustrated by the following example: f=@(x,y) cos(x.*y); Yvalues = linspace(0,1,50); W = @(x) f(x,Yvalues); which works fine if I only want to evaluate W at one point at a ...
0
votes
2answers
410 views

Error using fzero in Matlab: Undefined function or method 'det' for input arguments of type 'function_handle'

I have the same kind of problem described in this topic: Using fzero: Undefined function or method 'isfinite' for input arguments of type 'sym' Their answers really helped me, but I ...
0
votes
1answer
118 views

Matlab function handle optimizing

I have a function handle in Matlab like this fhandle = @(A) max(1-2*A,0).*(2*A.^5+2*A + 1) Where A is typically a matrix. I perform this quite a few times and it is slowing down the computation. It ...
0
votes
1answer
2k views

MATLAB: calling GUI/GUIDE functions from outside

When I try to invoke a subfunction in a GUI/GUIDE file (using a function handle which has been exposed as a global variable), a new axes is always created even if I set the axes to a specific axes in ...
0
votes
3answers
1k views

MatLab recursion error (beginner)

Ok. So i've got two function in MatLab that are calling each other. Riemann.m function I = Riemann(f, dx, a, b) x = a:dx:b; fx = f(x).*dx; I = sum(fx); and myfunc.m function f = ...