subtracting a constant from all the array elements in a structure

1 回表示 (過去 30 日間)
AP
AP 2011 年 6 月 16 日
I have defined an array of struct, named A. A is the profile by which the experiment is done. There are 4 profiles.
A has a member named B which is a cell array. B is of size N×1 where N is the number of experiments, approximately 5000. Elements of B are M×1 vectors. M varies with respect to the experiment.
For example, A(3).B{2} is for profile#3 and experiment#2.
I am trying update the values of B for each profile by subtracting 4 different constants from the elements of B. I tried the following but I get error.
cons(1)=1;
cons(2)=2;
cons(3)=3;
cons(4)=4;
for i=1:4
A(i).B=arrayfun(@(x) (x-cons(i)),[A(i).B)]);
end
I would appreciate your help. :)
  2 件のコメント
AP
AP 2011 年 6 月 16 日
I figured it out by using:
A(i).B=cellfun(@(x) (x-cons(i)), A(i).B, 'uniformOutput',false);
AP
AP 2011 年 6 月 16 日
I would be thankful for suggesting a better solution, :)))))

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

回答 (1 件)

Andrei Bobrov
Andrei Bobrov 2011 年 6 月 16 日
V=squeeze(struct2cell(A));
V2 = arrayfun(@(x)cellfun(@(y)y-cons(x),V{x},'un',0) ,1:length(A),'un',0);
A = struct('B',V2)
it variant without loop, but I think your variant better

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by