- 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
+10
View File
@@ -0,0 +1,10 @@
% ##################################################################################
% ## Funktion v = zp1(M,N) ##
% ##################################################################################
% Die Funktion erzeugt eine M*N-Matrix mit Zufallswerten
function v = zp1(M,N)
Mc = ones(M,1)*cos((1:N)/2);
v = (rand(M,N)-0.5) .* Mc;
% ##### EOF #####