problem in dealing Cell and array

1 回表示 (過去 30 日間)
Vinay Killamsetty
Vinay Killamsetty 2019 年 10 月 20 日
コメント済み: Vinay Killamsetty 2019 年 10 月 22 日
I have a cell name 'k'
Each cell of 'k' contains two dimensional array with row size 'r' and column size 'q' (r*q)
I want to make a matrix whose size is (row, column)=(k*q) in which each element is a sum of elemnts of the column vector of each array in cell 'k'
I have attached the picture related to this problem for clear understanding of the problem
I there any simple solution for doing this using cellfun command

採用された回答

Stephan
Stephan 2019 年 10 月 20 日
% produce some data to play with
r = 3;
q = 4;
k(1:5) = {rand(r,q)}; % size of k = 1 x 5
% This should do what you expect:
k = reshape(cell2mat(cellfun(@sum,k,'UniformOutput',false)),size(k,2),[])
  1 件のコメント
Vinay Killamsetty
Vinay Killamsetty 2019 年 10 月 22 日
Thanq very much

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by