diff options
Diffstat (limited to 'Tutorial2_Plot/Scilab_code/Tutotial2_multi_plotting.sce')
-rw-r--r-- | Tutorial2_Plot/Scilab_code/Tutotial2_multi_plotting.sce | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Tutorial2_Plot/Scilab_code/Tutotial2_multi_plotting.sce b/Tutorial2_Plot/Scilab_code/Tutotial2_multi_plotting.sce index 91e4f20..e149334 100644 --- a/Tutorial2_Plot/Scilab_code/Tutotial2_multi_plotting.sce +++ b/Tutorial2_Plot/Scilab_code/Tutotial2_multi_plotting.sce @@ -3,7 +3,7 @@ clear clc //Import data from file -Data = csvRead('/home/chayan/Documents/scilab-tutorials/Tutorial2/Data/Tut2_data1.csv'); +Data = csvRead('/home/chayan/Documents/scilab-tutorials/Tutorial2_Plot/Data/Tut2_data1.csv'); //Segregate the data into variables y = Data(:,1); @@ -33,3 +33,7 @@ xtitle('Plot of Time versus Length_x1 and Length_x3','Time','Length'); legends(['Length of x1','Length of x3'],[-1,2],opt="ur",font_size=2); //Font size of the legends + + + + |