how to transfer independent variable
Afficher commentaires plus anciens
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
le 14 Sep 2013
Try this
f_result = f(x);
g_result = g(t);
v_result = v(f_result, g_result);
Catégories
En savoir plus sur Image Arithmetic dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!