diff options
Diffstat (limited to 'Tutorial2/Scilab_code/Tutotial2_plotting.sce')
-rw-r--r-- | Tutorial2/Scilab_code/Tutotial2_plotting.sce | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Tutorial2/Scilab_code/Tutotial2_plotting.sce b/Tutorial2/Scilab_code/Tutotial2_plotting.sce deleted file mode 100644 index b191b80..0000000 --- a/Tutorial2/Scilab_code/Tutotial2_plotting.sce +++ /dev/null @@ -1,20 +0,0 @@ -//This script demonstrate plotting in Scilab -clear -clc - -//Import data from file -Data = csvRead('/home/chayan/Documents/scilab-tutorials/Tutorial2/Data/Tut2_data1.csv'); - -//Segregate the data into variables -y = Data(:,1); -x1 = Data(:,2); -x2 = Data(:,3); -x3 = Data(:,4); -x4 = Data(:,5); - -//Plotting y versus x1 -plot(y,x1); - - - - |