Why does it give the error: Undefined function or variable 'arctanh'. Is there another way to use arctanh for my hyperbolic function?
이전 댓글 표시
function calc_vel = freefalljumper(in_mass, in_time, in_drag)
grav = 9.8; b = 0.425; init_vel = 0; calc_vel = sqrt(in_mass grav/(b * in_drag)) *tanh(in_time * sqrt((b * in_drag)*grav/in_mass)) + ..., arctanh(init_vel sqrt((b * in_drag)/ in_mass * grav));
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Installing Products에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!