how do i plot this?

3 views (last 30 days)
Maryam
Maryam on 5 Nov 2022
Edited: KSSV on 5 Nov 2022
how do I plot this in matlab?
f(x)=2x/(x^2)+1 - x/sqrt(3*x+6) in the interval of -2<x_<6 (what i mean is that x is smaller or exactly 6)
i wrote like this below:
x=linspace(-2,6)
f=(2*x/x.^2+1)-(x/sqrt(3*x+6))
plot(x,f)
but this did not work

Answers (1)

KSSV
KSSV on 5 Nov 2022
Edited: KSSV on 5 Nov 2022
x=linspace(-2,6) ;
f=(2*x./x.^2+1)-(x./sqrt(3*x+6)); %<--- element by element division
plot(x,f)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!