git-svn-id: http://moon:8086/svn/matlab/trunk@99 801c6759-fa7c-4059-a304-17956f83a07c
This commit is contained in:
2018-08-30 18:06:49 +00:00
parent 07c78cd992
commit 1ab94a4bea
24 changed files with 988 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
function distort_eval(k)
N = 100;
x = (0:(N-1))/(N-1);
b = 0.9
y = b + (1-b)*x.*exp(k*abs(x))./exp(k);
plot(x, y); grid;