Throughput calculation for the system

S=[1 2 3
4 5 6
7 8 9]
i need to calculate the throughput of each value using expression 1+(S/N)(where N=0.01) and I need to add all the throughput which results in total throughput

1 件のコメント

per isakson
per isakson 2017 年 11 月 24 日
>> sum( sum( 1+S/0.01 ) )
ans =
4509
???

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

回答 (1 件)

Jan
Jan 2017 年 11 月 24 日

0 投票

N = 0.01;
Throughput = 1 + S ./ N;
Total = sum(Throughput(:));

カテゴリ

ヘルプ センター および File ExchangePHY Components についてさらに検索

質問済み:

2017 年 11 月 24 日

回答済み:

Jan
2017 年 11 月 24 日

Community Treasure Hunt

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

Start Hunting!

Translated by