invert the function s = L(t) to solve for t.

1 view (last 30 days)
Hyunji Yu
Hyunji Yu on 9 Mar 2020
Commented: Nishant Gupta on 13 Mar 2020
syms t;
x(t)= sin(3*t^2)*(12*t + (10*13^(1/2))/13);
y(t)= t*(6*13^(1/2)*t + 5);
z(t)= cos(3*t^2)*(12*t + (10*13^(1/2))/13);
syms tau;
L(t) = vpaintegral(speed(tau), tau, 0, t);
syms s;
solve(s == L(t), t);
I'm trying to invert the function s = L(t) to solve for t, but I don't know how to change the function regarding as t.

Answers (0)

Categories

Find more on Symbolic Math Toolbox 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!