フィルターのクリア

Insert array into matrix within a loop

3 ビュー (過去 30 日間)
tilfani oussama
tilfani oussama 2018 年 1 月 30 日
コメント済み: Andrei Bobrov 2018 年 1 月 30 日
I have a matrix X (N,100), i have a function which calculate for each column of X another array h(1,50), a would like to calculate for each column of X(N,:) a vector h and making them all in a matrix H(100,50). Can someone help

採用された回答

Andrei Bobrov
Andrei Bobrov 2018 年 1 月 30 日
編集済み: Andrei Bobrov 2018 年 1 月 30 日
m = size(X,2);
out = zeros(m,50);
for ii = 1:m
out(ii,:) = your_function(X(:,ii));
end
  4 件のコメント
tilfani oussama
tilfani oussama 2018 年 1 月 30 日
yes i did it works Thank you
Andrei Bobrov
Andrei Bobrov 2018 年 1 月 30 日
Thank you Jos! I am corrected.

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

その他の回答 (1 件)

Jos (10584)
Jos (10584) 2018 年 1 月 30 日
Just to make sure: X has 100 columns, You have a function that takes a column and returns a row-vector of 50 columns. And now you want to do this for each column of X and stack all results in a 100-by-50 array. Something like this will help you:
myfun = @(c) [1:50] * mean(c(:)) ;
% just a function that takes a (column) vector and returns a 1-by-50 vector
C = arrayfun(@(k) myfun(X(:,k)), 1:size(X,2), 'un', 0) ; % apply to each column of X
h = cat(1,C{:}) ; % stack each 1-by-50 cell into an array

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by