Assign vector to 3d matrix

6 ビュー (過去 30 日間)
Jakub Matousek
Jakub Matousek 2018 年 12 月 3 日
回答済み: Matt J 2018 年 12 月 4 日
Hi, is there a way to do this?(hope its obvious what i want to do, its initialization for kallman filters used in monte carlo simulations...) Without for cycle?
This give me :
Assignment has fewer non-singleton rhs dimensions than non-singleton subscripts
xhatc = zeros(2,K,N);
xhatc(:,1,1:end) = [1;1];

採用された回答

Matt J
Matt J 2018 年 12 月 4 日
xhatc(:,1,:) = repmat([1;1],1,1,N);

その他の回答 (1 件)

Jan
Jan 2018 年 12 月 3 日
編集済み: Jan 2018 年 12 月 4 日
If xhatc is defined before:
xhatc(:,1,:) = 1
or maybe:
xhatc(1:2,1,1:end) = 1
It will get clear if you post, if xhatc is defined before, if so in which size and mention the wanted result.
After the editing of the question it is clear, that the first one is efficient and working:
xhatc = zeros(2,K,N);
xhatc(:,1,:) = 1;
  1 件のコメント
Jakub Matousek
Jakub Matousek 2018 年 12 月 3 日
Edited

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by