added conways, handouts
This commit is contained in:
3
conways/clip.m
Normal file
3
conways/clip.m
Normal file
@@ -0,0 +1,3 @@
|
||||
function R = clip(X, x_min, x_max)
|
||||
R = (X >= x_max) & ~(X <= x_min);
|
||||
end
|
||||
Reference in New Issue
Block a user