photo

Nhat Huy


Last seen: 2ヶ月 前 2023 年からアクティブ

Followers: 0   Following: 0

統計

  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


For loop function help
I have a piece of code down here to solve a quadratic equation but i don't know why it fail to sovle it. I'm newbie to matlab. ...

8ヶ月 前 | 1 件の回答 | 0

1

回答

質問


Hi, i'm just wonder can Matlab have any function to find asymptotes of y = f(x) that satisfy x = x(t) and y = y(t). I have try many solutions but nothing is success.
syms t; x_t = (t+1)./(t-1); y_t = (t^2 + 2)./(t^2 - t); figure; hold on; grid on; fplot(x_t, y_t);

8ヶ月 前 | 0 件の回答 | 0

0

回答

質問


i'd like to ask is there any function to find asymptotes of an equation y = f(x) that satisfies x = x(t) and y = y(t). I'm new to matlab.
syms t x = (t+1)./(t-1); y = (t^2+2)./(t^2-t); % Find horizontal asymptotes syms x0 tx = solve(x == x0, t); num_ha =...

8ヶ月 前 | 2 件の回答 | 1

2

回答