フィルターのクリア

How to add time from 2 arrays

1 回表示 (過去 30 日間)
SS
SS 2014 年 10 月 16 日
回答済み: Andrei Bobrov 2014 年 10 月 16 日
Hi, I am a new user of Matlab. I have the following problem:
I have two columns like this way.
  • a =102 sec
  • a =135
  • a =157
  • b =189
  • b =201
  • a =222
  • a =245
  • b =290
Here the values are in seconds. I want to write a formula, which show the total duration of seconds of a and b.
For example: here total duration of a is = (157-102) + (245-222) = 78 seconds.
Please suggest me how to do it.
Thanks
  6 件のコメント
José-Luis
José-Luis 2014 年 10 月 16 日
So is your variable a table or do you have two column vectors: one with strings and the other with numbers?
SS
SS 2014 年 10 月 16 日
It's two column vectors: one with string and other with number.

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

採用された回答

Andrei Bobrov
Andrei Bobrov 2014 年 10 月 16 日
C = {'a' 102
'a' 135
'a' 157
'b' 189
'b' 201
'a' 222
'a' 245
'b' 290}
cn = [C{:,2}]';
[~,~,c1] = unique(C(:,1));
t = [true;diff(c1)~=0];
s1 = accumarray(cumsum(t),cn,[],@(x)x(end)-x(1));
out = accumarray(c1(t),s1);

その他の回答 (1 件)

Rainer
Rainer 2014 年 10 月 16 日
I don't see the two columns and I don't understand what a and b are.
  1 件のコメント
SS
SS 2014 年 10 月 16 日
sorry..i corrected it:
  • a =102 sec
  • a =135
  • a =157
  • b =189
  • b =201
  • a =222
  • a =245
  • b =290

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

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by