フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

case of two mappings

1 回表示 (過去 30 日間)
hang dong
hang dong 2019 年 5 月 21 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hi everyone! I am having difficulty in the combination of the two mappings, I have tried many times but still have not found a way to build the program. hope everyone help me. thank you very much.
  1 件のコメント
Rik
Rik 2019 年 5 月 21 日
Have a read here and here. It will greatly improve your chances of getting an answer.
What do you mean exactly by mappings? Please provide a small example input and output to illustrate what you mean. And what have you tried so far?

回答 (3 件)

Walter Roberson
Walter Roberson 2019 年 5 月 21 日
%mapping #1: x -> x^2
%mapping #2: x -> x/2 + 1
mapping1 = @(x) x.^2;
mapping2 = @(x) x/2 + 1;
map1_2 = @(x) mapping2(mapping1(x));
fplot(map1_2, [-5 5])

hang dong
hang dong 2019 年 5 月 22 日
mapping1: permutation [0 1 3 2]
mapping2: permutation [0 3 2 1]
The combination of these two mappings will be a permutation I know how to calculate it on writing paper, I have trouble doing it on matlab

James Tursa
James Tursa 2019 年 5 月 22 日
Not sure which one is first, but maybe one of these is what you want?
>> mapping1 = [0 1 3 2]
mapping1 =
0 1 3 2
>> mapping2 = [0 3 2 1]
mapping2 =
0 3 2 1
>> mapping1(mapping2+1)
ans =
0 2 3 1
>> mapping2(mapping1+1)
ans =
0 3 1 2
  1 件のコメント
hang dong
hang dong 2019 年 5 月 22 日
thank you very much!

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by