How would I put this into a graph?

1 view (last 30 days)
Joshua Ekwueme
Joshua Ekwueme on 25 Oct 2021
Answered: Walter Roberson on 25 Oct 2021
y=𝟏𝟏𝟎(x/𝟓+x)𝒆(−𝟎.𝟖x/𝟖)

Answers (1)

Walter Roberson
Walter Roberson on 25 Oct 2021
syms x
y = randi(256) ./ (x ./ randi(10) + x) .* exp(-rand() .* x ./ randi(10))
y = 
fplot(y)

Tags

Community Treasure Hunt

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

Start Hunting!