フィルターのクリア

Functions with 2 variables

1 回表示 (過去 30 日間)
Jens Petit-jean
Jens Petit-jean 2021 年 2 月 17 日
コメント済み: Walter Roberson 2021 年 2 月 21 日
How do you make a function (NOT an anonymous function) from this?
"Als" means "if"
Thanks in advance
  6 件のコメント
Walter Roberson
Walter Roberson 2021 年 2 月 17 日
k does not need to be an input for this function. The conditions have to do with x modulo 4: -2 <= mod(x,4) < 0 is the second condition, and 0 <= mod(x,4) < 2 is the first condition.
Walter Roberson
Walter Roberson 2021 年 2 月 19 日

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2021 年 2 月 17 日
format long g
mat2str(g(-9:.5:9))
ans = '[0 0.5 2 3.5 4 3.5 2 0.5 0 0.5 2 3.5 4 3.5 2 0.5 0 0.5 2 3.5 4 3.5 2 0.5 0 0.5 2 3.5 4 3.5 2 0.5 0 0.5 2 3.5 4]'
function output = g(x)
k = floor(x/4);
rm = x - 4*k;
mask = rm < 2;
output = zeros(size(x));
output(mask) = 4-2*(rm(mask) - 1).^2;
output(~mask) = 2*(rm(~mask) - 3).^2;
end
  7 件のコメント
Walter Roberson
Walter Roberson 2021 年 2 月 17 日
k is an element of integers.
For any given real finite x, there is exactly one integer k such that 4*k-2 <= x < 4*k+2. If you try to use any other k then both range tests will fail.
Once you know the k that makes the above true, then the two different conditions decide between halves, 4*k-2 <= x < 4*k, or 4*k <= x < 4*k+2
I coded in a slightly tricky way for the second condition: you may need some study to figure it out.
I could have coded a different way overall, finding k based on floor((x+2)/4) . If you do that, make sure you get the boundaries right.
Jens Petit-jean
Jens Petit-jean 2021 年 2 月 17 日
oooooh thanks I get it now, really appreciate the help!

サインインしてコメントする。

その他の回答 (1 件)

Asayel Alazmi
Asayel Alazmi 2021 年 2 月 21 日
Write an mfile using for loop to output a all numbers from 1 to 4 with an increment of 0.2
  1 件のコメント
Walter Roberson
Walter Roberson 2021 年 2 月 21 日
No, I don't think doing that would help solve the question that the person posted.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by