- refactored

This commit is contained in:
2022-06-30 13:32:40 +02:00
parent 77cd5261b1
commit 776932e5d1
144 changed files with 0 additions and 38 deletions
+11
View File
@@ -0,0 +1,11 @@
% fpoints.m
function fp = fpoints(dim,len, pos)
fp = randn(dim,len);
for d=1:dim,
fp(d,:) = fp(d,:) + pos(d);
end;