Community Profile

photo

ILoveMath


Last seen: 7 months 前 自 2022 起处于活动状态

Followers: 0   Following: 0

Programming Languages:
MATLAB

统计数据

  • Thankful Level 2

查看徽章

Feeds

排序方式:

提问


Plotting with bisection method
I have this so far: clc; xlabel('x') ylabel('f(x)') title('Roots of f(x)= -x^4+12x^2-3x-5') fx= @(x) -x.^4+12*x.^2-3*x-5; ...

2 years 前 | 1 个回答 | 0

1

个回答

提问


Local extrema of a function
I have this so far: clc; syms x f= 0.1*x.^3-1.2*x.^2+10; fprintf('The function is x^3/10-(6*x^2)/5+10\n\n') fx= diff(f,x); ...

2 years 前 | 1 个回答 | 0

1

个回答

提问


Automatically find all roots of a function using bisect method
MATLAB using bisection: Function: -x^4+12x^2-3x-5 Defined on [-4,4] Write a script to automatically find the intervals [a,b] c...

2 years 前 | 1 个回答 | 0

1

个回答

提问


Plot the line Tangent at a given point
I'm new to Matlab and am trying to plot the following: Graph the function y = 3x^2 for x = 0 to x = 5 in steps of 0.1 as a sol...

2 years 前 | 1 个回答 | 0

1

个回答