cours-m1-eea/455-Codage_Sources/Cours/lol.m

10 lines
121 B
Mathematica
Raw Normal View History

2019-01-15 15:56:28 +01:00
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])