how to transfer independent variable
Show older comments
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)
Image Analyst
on 14 Sep 2013
Try this
f_result = f(x);
g_result = g(t);
v_result = v(f_result, g_result);
Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!