please give me answer what is wrong

1 view (last 30 days)
현국 조
현국 조 on 22 Oct 2021
Commented: 현국 조 on 22 Oct 2021

Accepted Answer

DGM
DGM on 22 Oct 2021
Use elementwise division.
x = 0:0.1:103;
y = ((28*log(x) - 2*x - 12*x.^2.*log(x) - 4*x.^3.*log(x) - 12*x.*log(x) - 2*x.^2 - (2*x.^3)/3 + 206/3).^(1/2)-8) ...
./(6*log(x) + 1);
plot(x,y)
Warning: Imaginary parts of complex X and/or Y arguments ignored.

More Answers (0)

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!