photo

Jarrod


Last seen: 8개월 전 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개월 전 | 답변 수: 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개월 전 | 답변 수: 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개월 전 | 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개월 전 | 답변 수: 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개월 전 | 답변 수: 1 | 0

1

답변