summaryrefslogtreecommitdiff
path: root/Tutorial01-Basics/Scilab_code/Tutotial1_filehandling.sce
diff options
context:
space:
mode:
authorChayan Bhawal2018-10-02 10:19:33 +0530
committerChayan Bhawal2018-10-02 10:19:33 +0530
commit3d0c890de4ac7d9afd576e889bd2624437d79c70 (patch)
tree10bf164ddb34ffcc5c4b059e2968990b4e472d2f /Tutorial01-Basics/Scilab_code/Tutotial1_filehandling.sce
parent6d39446c434cfcca02ae7a4551e2d66edf9def7f (diff)
downloadscilab-tutorials-3d0c890de4ac7d9afd576e889bd2624437d79c70.tar.gz
scilab-tutorials-3d0c890de4ac7d9afd576e889bd2624437d79c70.tar.bz2
scilab-tutorials-3d0c890de4ac7d9afd576e889bd2624437d79c70.zip
Renamed_files_relative_path
Diffstat (limited to 'Tutorial01-Basics/Scilab_code/Tutotial1_filehandling.sce')
-rw-r--r--Tutorial01-Basics/Scilab_code/Tutotial1_filehandling.sce23
1 files changed, 0 insertions, 23 deletions
diff --git a/Tutorial01-Basics/Scilab_code/Tutotial1_filehandling.sce b/Tutorial01-Basics/Scilab_code/Tutotial1_filehandling.sce
deleted file mode 100644
index 2924f03..0000000
--- a/Tutorial01-Basics/Scilab_code/Tutotial1_filehandling.sce
+++ /dev/null
@@ -1,23 +0,0 @@
-//This function is to import data from a csv file and store it in a variable
-//Using the data mean and standard deviation of the data is computed
-clear
-clc
-
-exec mymean.sci;
-exec mystdev.sci;
-
-//Import data from csv file
-Data = csvRead('../Data/Tut1_data1.csv');
-x = Data(:,1);
-y = Data(:,2);
-
-
-//Compute mean of the imported data
-mean_of_x = mymean(x);
-//Compute standard deviation of the imported data
-stdev_of_x= mystdev(x,mean_of_x);
-
-//Data to be exported (It can be a scalar, vector or matrix)
-data_to_write = [mean_of_x stdev_of_x];
-//Export data to a csv file
-csvWrite(data_to_write,'../Data/Tut1_data3.csv')