フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Fltering to subsets of matrices

1 回表示 (過去 30 日間)
David
David 2012 年 5 月 4 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
both Excel and Sql can 'query' and run functions on subsets of data based on common lable fields (e.g. return all sales in GA)
sum if 'GA' or count if 'GA'
Does Matlab have similare functionality?
  1 件のコメント
Sean de Wolski
Sean de Wolski 2012 年 5 月 4 日
Please provide a small example (inputs/ops/expected outputs).

回答 (1 件)

per isakson
per isakson 2012 年 5 月 4 日
Yes!
sum( MyData( strcmp( MyData( :, ixColumn ), 'GA' ), : ), 1 )
This question is very close to Summing values with database "group by" functionality. It is a better tactic to provide a toy example than repeating the question! Didn't the answers to you other question help you?
  2 件のコメント
David
David 2012 年 5 月 22 日
Sorry, but I was not successful using the previous answer and I assumed it was because of the way I framed my question - which is why I tried to improve my question.
per isakson
per isakson 2012 年 5 月 22 日
Does your code work now?

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by