photo

Jarrod


Last seen: 8 months 前 自 2023 起处于活动状态

Followers: 0   Following: 0

统计学

  • Thankful Level 2

查看徽章

Feeds

排序方式:

提问


Variable x must be of data type double. It is currently of type sym. Check where the variable is assigned a value.
%W=3t^2+6t %W=3t(t+2) %(-(b)+sqrt(b^2-(4*a*c))/2*a) %(-(b)-sqrt(b^2-(4*a*c))/2*a) syms x positive W=3*x.^2+6*x; t1=solve(W...

10 months 前 | 1 个回答 | 0

1

个回答

提问


find x given y
%W=3t^2+6t %W=3t(t+2) %(-(b)+sqrt(b^2-(4*a*c))/2*a) %(-(b)-sqrt(b^2-(4*a*c))/2*a) syms x W=3*x.^2+6*x; t1a=solve(3*x.^2+6*...

10 months 前 | 1 个回答 | 0

1

个回答

已回答
solving parabola with x and y intercept
function y = parshelter(x1,y1,x2,y2) syms x b=(( y2 - y1 )/( (x1^2) - (x2^2) )); a=y1+b*x1^2; y=a-b*x^2; end ...

10 months 前 | 0

| 已接受

提问


solving parabola with x and y intercept
Im currently trying figure out how to graph a parabola given x and y intercept function y = parshelter(x1,y1,x2,y2) %where i...

10 months 前 | 1 个回答 | 0

1

个回答

提问


how do I fill between 3 lines?
b = 48 time = 0:1:40000; mFast = 6/30 mSlow = 4.3/30 yFast = (mFast*time)+b ySlow = (mSlow*time)+b plot(time,yFast); x...

10 months 前 | 1 个回答 | 0

1

个回答