Throughput calculation for the system

16 visualizzazioni (ultimi 30 giorni)
Prabha Kumaresan
Prabha Kumaresan il 24 Nov 2017
Risposto: Jan il 24 Nov 2017
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

Risposte (1)

Jan
Jan il 24 Nov 2017
N = 0.01;
Throughput = 1 + S ./ N;
Total = sum(Throughput(:));

Community Treasure Hunt

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

Start Hunting!

Translated by