From c0c0582462720ed597b00e116506570577614e89 Mon Sep 17 00:00:00 2001 From: shamikam Date: Tue, 7 Nov 2017 15:59:48 +0530 Subject: initial commit --- help/en_US/scilab_en_US_help/vco.html | 87 +++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 help/en_US/scilab_en_US_help/vco.html (limited to 'help/en_US/scilab_en_US_help/vco.html') diff --git a/help/en_US/scilab_en_US_help/vco.html b/help/en_US/scilab_en_US_help/vco.html new file mode 100644 index 0000000..7e2f72b --- /dev/null +++ b/help/en_US/scilab_en_US_help/vco.html @@ -0,0 +1,87 @@ +
+ +Voltage Controlled Oscillator
y=vco(x,fc,fs) +y=vco(x,[fmin fmax],fs)
y=vco(x,fc,fs) +Creates a frequency modulated cosine wave y whose frequency varies as the magnitude of x +x lies in [-1,1]. x=-1 corresponds to a frequency of 0, x=0 corresponds to a frequency of fc +and x=1 corresponds to a frequency of 2fc. +y=vco(x,[fmin fmax],fs) +Scales the frequency range so that x=-1 corresponds to a frequency of fmin and +x=1 corresponds to a frequency of fmax +If x is a matrix the same operation is performed on the columns on x +Size of y is the same as the size of x +Example +x=rand() +x =
+0.2113249 +y=vco(x,2000,8000) +y =
+0.9454092 +Author +Ankur Mallick