How ı can write this function on Matlab

1 visualizzazione (ultimi 30 giorni)
I will enter an x ​​value

Risposta accettata

Sulaymon Eshkabilov
Sulaymon Eshkabilov il 4 Giu 2020
Hi,
Here is one of the possible solutions for x having a single value:
function Y = MY_fun(x)
if x>=1 && x<10
Y = exp(-x-1)/(log10(x)+log(x));
elseif x>=10
Y=sin(3*x)/sqrt(3*pi);
else
Y = x^(-exp(1)+x)+sqrt(x)*abs(x);
end
end
  13 Commenti
Emre Tutucu
Emre Tutucu il 5 Giu 2020
thanks for your comment but i got it. wrong was not in code, in my matlab version. İts okay now.
Thanks again :)
Sulaymon Eshkabilov
Sulaymon Eshkabilov il 5 Giu 2020
Your code had a few potential errs which are not MATLAB version problem.

Accedi per commentare.

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by