How to program a function with 2 variables

4 visualizzazioni (ultimi 30 giorni)
Jens Petit-jean
Jens Petit-jean il 16 Feb 2021
Commentato: Walter Roberson il 19 Feb 2021
Hello, I need to program this as a function (not as an anonymous, but as a function that you can use multiple times in other programs). I can do this when there is only one variables but I really can't do it with 2 variables. Can someone help me?
Thanks in advance

Risposte (1)

Pranav Verma
Pranav Verma il 19 Feb 2021
Hi Jens,
You can write a simple function taking x and k as input and put the conditions as mentioned:
function val = func(x,k)
val = 1;
if(isinteger(int64(k) ))
if (4*k <= x && x < 4*k + 2)
val = 4 - (2 * (x - (4 * k) - 1)^2);
elseif (isinteger(k) && 4*k-2 <= x && x < 4*k)
val = 2 * (x - (4*k) + 1)^2;
end
end
end
Hope this helps!
Thanks

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by