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

Réponses (1)

Image Analyst
Image Analyst le 14 Sep 2013
Try this
f_result = f(x);
g_result = g(t);
v_result = v(f_result, g_result);

Question posée :

le 14 Sep 2013

Community Treasure Hunt

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

Start Hunting!

Translated by