cours-m1-eea/455-Codage_Sources/Cours/lol.m
2019-01-15 15:56:28 +01:00

10 lines
No EOL
121 B
Matlab

clear all
close all
M=20;
Delta = 0.1;
x = -5:0.01:5;
[y,idx] = quantif(x,M,Delta);
plot(x,y); grid; axis([-5 5 -5 5])