フィルターのクリア

adding elements of an array column wise and storing it in different array

4 ビュー (過去 30 日間)
sneha sharma
sneha sharma 2015 年 12 月 8 日
編集済み: Shivam Chaturvedi 2015 年 12 月 8 日
delay consists of some rows and columns.How to add its elements column wise and store it in another array with rows as earlier and column is 1

回答 (1 件)

Shivam Chaturvedi
Shivam Chaturvedi 2015 年 12 月 8 日
編集済み: Shivam Chaturvedi 2015 年 12 月 8 日
You can use the sum function ( Sum of Array Elements [link to doc page] ) and since you need to sum on the columns, you can specify the dim parameter (should be 2 in this case to sum up column wise).
columnwise = sum(arr,2) % will get the columns summed up. Result will be 1 column.

カテゴリ

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