X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/fc2ec49c325b99370170789886b4be4f43e16d68..b8e89a384896a4f8ce3e1990a10c88e7164af55c:/documentation/code_VALSignal.signal_vectorize.html diff --git a/documentation/code_VALSignal.signal_vectorize.html b/documentation/code_VALSignal.signal_vectorize.html deleted file mode 100644 index f3013ce..0000000 --- a/documentation/code_VALSignal.signal_vectorize.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - -Signal.signal_vectorize - - -let signal_vectorize s1 s2 = 
-        let size = (signal_fun s2) 0 in
-        match size with
-        |N size_int ->
-                (
-                        let new_signal = fun t -> 
-                          make_vector size_int (fun i -> (signal_fun s1) (size_int * t + i)) in
-                        let new_frequency = (frequency s1) / size_int in
-                        (new_frequency, new_signal)
-                )
-        |-> raise (Signal_operation "Vectorize: vector size should be int.")
\ No newline at end of file