how to transfer independent variable

Hi All I have function v(x,t) and want to find v(f(x),g(t)) for known functions f and g. how can I do that in matlab? Thank you

Answers (1)

Try this
f_result = f(x);
g_result = g(t);
v_result = v(f_result, g_result);

Asked:

on 14 Sep 2013

Community Treasure Hunt

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

Start Hunting!