palate 0.3.9

File type detection combining tft and hyperpolyglot
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
x_0=linspace(0,100,101);
vx_0=linspace(0,100,101);
z=zeros(101,101);
for i=1:101
    for j=1:101
        z(i,j)=x_0(i)*vx_0(j);
    end
end

figure
pcolor(x_0,vx_0,z)
shading flat