How to define a mapping from R^n to R

6 ビュー (過去 30 日間)
Ajai Singh
Ajai Singh 2022 年 11 月 23 日
編集済み: Gowtham 2023 年 9 月 27 日
Hello everyone,
I am trying to define a mapping from R^n to R referred to as basis function in the picture attached.
I have to no idea how to proceed.
Any suggestions would be really helpful.
Thank you.

回答 (1 件)

Gowtham
Gowtham 2023 年 8 月 29 日
編集済み: Gowtham 2023 年 9 月 27 日
Hi Ajai,
I understand that you are given psi(y, u) in the space and want to map it to R space.
Assuming psi(y, u) is a column vector of size n, one way to map is by using dot product with a weight vector and performing sum on the result.
Example:
psi = [1; 2; 3];
weight = [2; 1; 2];
result = sum(weight .* psi);
result
result = 10
The above logic can be implemented in a function which maps . I hope it helps!
References:

カテゴリ

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

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by