diff --git a/examples/wireless/wifi-dsss-validation.cc b/examples/wireless/wifi-dsss-validation.cc index 0e6aa18b7..823c37d9f 100644 --- a/examples/wireless/wifi-dsss-validation.cc +++ b/examples/wireless/wifi-dsss-validation.cc @@ -4,10 +4,10 @@ * Author: Sébastien Deronne */ -// This example is used to validate error rate models for DSSS rates. -// -// It outputs plots of the Frame Success Rate versus the Signal-to-noise ratio -// for the DSSS error rate models and for every DSSS mode. +// This example is used to generate plots of the Frame Success Rate (FSR) versus the Signal-to-noise +// ratio (SNR) for NIST, YANS and Table-based error rate models and for every DSSS rate. It also +// performs a boundary check to ensure that the FSR is between 0 and 1. The results are finally +// saved in files (.plt) per model which can be processed by gnuplot to generate the plots. #include "ns3/command-line.h" #include "ns3/gnuplot.h" diff --git a/examples/wireless/wifi-ofdm-eht-validation.cc b/examples/wireless/wifi-ofdm-eht-validation.cc index 90dcdf4ba..46943cc3d 100644 --- a/examples/wireless/wifi-ofdm-eht-validation.cc +++ b/examples/wireless/wifi-ofdm-eht-validation.cc @@ -6,10 +6,10 @@ * Author: Sébastien Deronne */ -// This example is used to validate NIST and YANS error rate models for EHT rates. -// -// It outputs plots of the Frame Success Rate versus the Signal-to-noise ratio for -// Nist, Yans and Table-based error rate models and for every HT MCS value. +// This example is used to generate plots of the Frame Success Rate (FSR) versus the Signal-to-noise +// ratio (SNR) for NIST, YANS and Table-based error rate models and for every EHT MCS value. It also +// performs a boundary check to ensure that the FSR is between 0 and 1. The results are finally +// saved in files (.plt) per model which can be processed by gnuplot to generate the plots. #include "ns3/command-line.h" #include "ns3/gnuplot.h" diff --git a/examples/wireless/wifi-ofdm-he-validation.cc b/examples/wireless/wifi-ofdm-he-validation.cc index f877ffa13..9e603bcd1 100644 --- a/examples/wireless/wifi-ofdm-he-validation.cc +++ b/examples/wireless/wifi-ofdm-he-validation.cc @@ -4,10 +4,10 @@ * Author: Sébastien Deronne */ -// This example is used to validate Nist, Yans and Table-based error rate models for HE rates. -// -// It outputs plots of the Frame Success Rate versus the Signal-to-noise ratio for -// Nist, Yans and Table-based error rate models and for every HE MCS value. +// This example is used to generate plots of the Frame Success Rate (FSR) versus the Signal-to-noise +// ratio (SNR) for NIST, YANS and Table-based error rate models and for every HE MCS value. It also +// performs a boundary check to ensure that the FSR is between 0 and 1. The results are finally +// saved in files (.plt) per model which can be processed by gnuplot to generate the plots. #include "ns3/command-line.h" #include "ns3/gnuplot.h" diff --git a/examples/wireless/wifi-ofdm-ht-validation.cc b/examples/wireless/wifi-ofdm-ht-validation.cc index 6a27ecad8..a39c46381 100644 --- a/examples/wireless/wifi-ofdm-ht-validation.cc +++ b/examples/wireless/wifi-ofdm-ht-validation.cc @@ -4,10 +4,10 @@ * Author: Sébastien Deronne */ -// This example is used to validate Nist, Yans and Table-based error rate models for HT rates. -// -// It outputs plots of the Frame Success Rate versus the Signal-to-noise ratio for -// Nist, Yans and Table-based error rate models and for every HT MCS value. +// This example is used to generate plots of the Frame Success Rate (FSR) versus the Signal-to-noise +// ratio (SNR) for NIST, YANS and Table-based error rate models and for every HT MCS value. It also +// performs a boundary check to ensure that the FSR is between 0 and 1. The results are finally +// saved in files (.plt) per model which can be processed by gnuplot to generate the plots. #include "ns3/command-line.h" #include "ns3/gnuplot.h" diff --git a/examples/wireless/wifi-ofdm-validation.cc b/examples/wireless/wifi-ofdm-validation.cc index 5c90d4682..53ad973b9 100644 --- a/examples/wireless/wifi-ofdm-validation.cc +++ b/examples/wireless/wifi-ofdm-validation.cc @@ -6,10 +6,10 @@ * Author: Gary Pei */ -// This example is used to validate Nist, Yans and Table-based error rate models for OFDM rates. -// -// It outputs plots of the Frame Success Rate versus the Signal-to-noise ratio for -// Nist, Yans and Table-based error rate models and for every OFDM mode. +// This example is used to generate plots of the Frame Success Rate (FSR) versus the Signal-to-noise +// ratio (SNR) for NIST, YANS and Table-based error rate models and for every OFDM rate. It also +// performs a boundary check to ensure that the FSR is between 0 and 1. The results are finally +// saved in files (.plt) per model which can be processed by gnuplot to generate the plots. #include "ns3/command-line.h" #include "ns3/gnuplot.h" diff --git a/examples/wireless/wifi-ofdm-vht-validation.cc b/examples/wireless/wifi-ofdm-vht-validation.cc index db818fa51..7fbb14147 100644 --- a/examples/wireless/wifi-ofdm-vht-validation.cc +++ b/examples/wireless/wifi-ofdm-vht-validation.cc @@ -4,11 +4,11 @@ * Author: Sébastien Deronne */ -// This example is used to validate Nist, Yans and Table-based error rate models for VHT rates. -// -// It outputs plots of the Frame Success Rate versus the Signal-to-noise ratio for -// Nist, Yans and Table-based error rate models and for every VHT MCS value (MCS 9 is not -// included since it is forbidden for 20 MHz channels). +// This example is used to generate plots of the Frame Success Rate (FSR) versus the Signal-to-noise +// ratio (SNR) for NIST, YANS and Table-based error rate models and for every VHT MCS value (MCS 9 +// is not included since it is forbidden for 20 MHz channels). It also performs a boundary check to +// ensure that the FSR is between 0 and 1. The results are finally saved in files (.plt) per model +// which can be processed by gnuplot to generate the plots. #include "ns3/command-line.h" #include "ns3/gnuplot.h"