8 lines
210 B
Matlab
8 lines
210 B
Matlab
function [outputArg1,outputArg2] = normalise_data(inputArg1,inputArg2)
|
|
%NORMALISE_DATA Summary of this function goes here
|
|
% Detailed explanation goes here
|
|
outputArg1 = inputArg1;
|
|
outputArg2 = inputArg2;
|
|
end
|
|
|