Throughput calculation for the system
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Respuestas (1)
Jan
el 24 de Nov. de 2017
N = 0.01;
Throughput = 1 + S ./ N;
Total = sum(Throughput(:));
0 comentarios
Ver también
Categorías
Más información sobre PHY Components en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!