How to define function

3 visualizaciones (últimos 30 días)
Viktoriia Buliuk
Viktoriia Buliuk el 11 de Ag. de 2020
Comentada: Viktoriia Buliuk el 4 de Sept. de 2020
Hello!
Could you, please, suggest an answer:
How to define function f (x), which for x from -1 to 1, f (x) = 1; and outside these limits f (x) = 0.
Thank in advance!
  3 comentarios
Viktoriia Buliuk
Viktoriia Buliuk el 11 de Ag. de 2020
I try to define Window function. I have tried with if.
KSSV
KSSV el 11 de Ag. de 2020
Show us your code.

Iniciar sesión para comentar.

Respuesta aceptada

hosein Javan
hosein Javan el 11 de Ag. de 2020
function y = f(x)
y = zeros(size(x));
y(abs(x) < 1) = 1;
end
  5 comentarios
hosein Javan
hosein Javan el 11 de Ag. de 2020
ofcourse unless you want to use function file, you need this multiplication only to define your function in anonymous form. correct.
Viktoriia Buliuk
Viktoriia Buliuk el 4 de Sept. de 2020
Thank you very much!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Operators and Elementary Operations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by