Added documentation

This commit is contained in:
sakul-45 2021-07-09 19:09:42 +02:00
parent 00c467769a
commit 7c143300f0

View File

@ -1,6 +1,15 @@
function [dataOUT] = normalise_data(dataIN) function [dataOUT] = normalize_data(dataIN)
%NORMALISE_DATA Summary of this function goes here %NORMALISE_DATA normalizes data by max of region
% Detailed explanation goes here %
% Usage: [dataOUT] = NORMALISE_DATA(dataIN), where dataIN is a dataset
% loaded via the LOAD_MATLAB or LOAD_BRUKER function.
%
% The function will show the input data and offer two input fields, where
% the left and right borders of the maximum's region should be set.
% By pressing "Apply" the normalization will be executed and the graph
% changes to the normalized data.
% By pressing "Reset" the graph will return to show the original data.
% Exit the function by pressing "Done".
%% creating UI %% creating UI
fig = figure; fig = figure;