Procedure | Location | Procedure Type | Description |
---|---|---|---|
cistrcmp | FU_Strings | Function | Case-independent string comparison. |
correlation | FU_Statistics | Interface | Calculates the correlation coefficient between two variables. |
count_digits_integer | FU_Numbers | Interface | Counts the number of digits of an integer. |
covariance | FU_Statistics | Interface | Calculates the sample covariance between two variables. |
cp | FU_Files | Function | Copies a file or directory. |
endsWith | FU_Strings | Function | Checks if a string ends with a given substring. |
eq | FU_Numbers | Interface | Tests two real numbers for equality. |
exists | FU_Files | Function | Checks if a file or directory exists. |
expreg | FU_Statistics | Interface | Performs exponential regression between two sets of values. |
extension | FU_Files | Function | Determines the extension of a file. |
filename | FU_Files | Function | Determines the full filename given a path. |
gmean | FU_Statistics | Interface | Calculates the geometric mean. |
int2str0 | FU_Strings | Interface | Converts an integer into a string filling with leading zeros. |
IntervalTime | FU_Timing | Interface | Gets the time in seconds since the last measurement. |
is_directory | FU_Files | Function | Checks if a directory exists. |
is_empty | FU_Files | Function | Checks if a file is empty. |
is_inf | FU_Numbers | Interface | Determines if the value of the input variable is Infinity. |
is_nan | FU_Numbers | Interface | Determines if the value of the input variable is NaN. |
is_ordered | FU_Arrays | Interface | Checks if an array is ascending ordered. |
is_path_absolute | FU_Files | Function | Determines if a path is absolute or not |
is_path_relative | FU_Files | Function | Determines if a path is relative or not |
is_regular_file | FU_Files | Function | Checks if a regular file exists and it is not a directory, etc. |
lin_error_propagation | FU_Statistics | Interface | Performs linear error (or uncertainties) propagation. |
lin_interp | FU_Interpolation | Interface | Performs linear interpolation. |
linreg | FU_Statistics | Interface | Performs linear regression between two sets of values. |
logreg | FU_Statistics | Interface | Performs logarithmic regression between two sets of values. |
lower | FU_Strings | Function | Converts a string to lowercase characters. |
mean | FU_Statistics | Interface | Calculates the mean value. |
median | FU_Statistics | Interface | Calculates the median value. |
mergeChars | FU_Strings | Function | Merge characters in a string if they are contiguous. |
mkdir | FU_Files | Function | Creates a directory. |
mv | FU_Files | Function | Moves or renames a file or directory. |
ne | FU_Numbers | Interface | Tests two real numbers for inequality. |
num2str | FU_Strings | Interface | Converts number into a string. |
parent_path | FU_Files | Function | Determines the path to the parent directory given the path to a file. |
pcovariance | FU_Statistics | Interface | Calculates the population covariance between two variables. |
potreg | FU_Statistics | Interface | Performs potential regression between two sets of values. |
pskewness | FU_Statistics | Interface | Calculates the population skewness of a set of values. |
pstdev | FU_Statistics | Interface | Calculates the population standard deviation. |
pvariance | FU_Statistics | Interface | Calculates the population variance. |
readMatrix | FU_Files | Interface | Reads a matrix from a file. |
remove_filename | FU_Files | Function | Removes the filename from a path. |
replace | FU_Strings | Function | Searches and replaces a substring in a string |
replace_extension | FU_Files | Function | Changes the extension of a filename. |
replace_filename | FU_Files | Function | Changes the filename of a path (keeping the path). |
ResetTotalTime | FU_Timing | Subroutine | Sets the starting point to count the total time. |
rm | FU_Files | Function | Removes a file or directory. |
skewness | FU_Statistics | Interface | Calculates the sample skewness of a set of values. |
splitstr | FU_Strings | Interface | Splits a string. |
startsWith | FU_Strings | Function | Checks if a string starts with a given substring. |
stdev | FU_Statistics | Interface | Calculates the sample standard deviation. |
stem | FU_Files | Function | Determines the filename without the path and without the final extension given a path. |
str2num | FU_Strings | Interface | Converts a string into an integer or real. |
TotalTime | FU_Timing | Interface | Gets the time in seconds since the beginning of the program or since the last time resetTotalTime is executed. |
upper | FU_Strings | Function | Converts a string to uppercase characters. |
variance | FU_Statistics | Interface | Calculates the sample variance. |
writeMatrix | FU_Files | Interface | Writes a matrix to a file. |
zfill | FU_Strings | Interface | Adds zeros at the beginning of a string. |