photo

ILoveMath


Last seen: 10 maanden ago Active since 2022

Followers: 0   Following: 0

Programming Languages:
MATLAB

Statistics

  • Thankful Level 2

View badges

Feeds

View by

Question


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; ...

meer dan 2 jaar ago | 1 answer | 0

1

answer

Question


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); ...

meer dan 2 jaar ago | 1 answer | 0

1

answer

Question


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...

meer dan 2 jaar ago | 1 answer | 0

1

answer

Question


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...

meer dan 2 jaar ago | 1 answer | 0

1

answer