Apply 16-QAM modulation to complete sets of constellation points by using binary-coded symbol mapping and Gray-coded symbol mapping. M = 16;% Modulation orderx = (0:15);% Integer inputsymbin = qammod(x,M,'bin');% 16-QAM output (binary-coded)symgray = qammod(x,M,'gray');% 16-...