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
2017-11-24
>> sum( sum( 1+S/0.01 ) )
ans =
4509
???
回答(1 个)
Jan
2017-11-24
N = 0.01;
Throughput = 1 + S ./ N;
Total = sum(Throughput(:));
类别
在 帮助中心 和 File Exchange 中查找有关 PHY Components 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!