How to put vector as a element in rlNumericSpec?

3 ビュー (過去 30 日間)
Yang Chen
Yang Chen 2023 年 3 月 1 日
コメント済み: Yang Chen 2023 年 3 月 3 日
Hi, Everyone,
I am trying to create custom MATLAB Environment from template. My observations consist of numerical variable and vector, like
observation = [number, number, vector, vector]
Unfortunately, I find rlNumericSpec only support number as element. I want to know how to deal with this situation.

採用された回答

Emmanouil Tzorakoleftherakis
Emmanouil Tzorakoleftherakis 2023 年 3 月 2 日
You could do something along the lines of:
ObservationInfo(1) = rlNumericSpec([1 1]);
ObservationInfo(1).Name = 'scalar';
ObservationInfo(2) = rlNumericSpec([3 1]);
ObservationInfo(2).Name = 'vector';
and then use the obsInfo to create your environment
  5 件のコメント
Emmanouil Tzorakoleftherakis
Emmanouil Tzorakoleftherakis 2023 年 3 月 3 日
Not sure how much I can add without knowing specifics, but assuming your environment is in MATLAB (i.e. not Simulink), when you step through your dynamics you will basically get observations that differ in length. In that function, I would assign each observation to a specific slot. So, for example, obs(1) is position, obs(2) is velocity, obs(3) is acceleration. If in certain situations you don't have, e.g. velocity measurements, then set obs(2)=0 and the other two values would be equal to your measurements. If you don't have acceleration, obs(3)=0 and so on
Yang Chen
Yang Chen 2023 年 3 月 3 日
Thx, Emmanouil, understood.

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by