Added missing commented string (first line) for triggering the unitary tests.

time-shift
Stéphane Adjemian (Charybdis) 2013-10-11 23:36:29 +02:00
parent ffe6b792da
commit f9315f1409
8 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
function C = ge(A,B)
function C = ge(A,B) % --*-- Unitary tests --*--
% Overloads the >= operator for dynDates objects.
%

View File

@ -1,4 +1,4 @@
function C = gt(A,B)
function C = gt(A,B) % --*-- Unitary tests --*--
% Overloads the > operator for dynDates objects.
%

View File

@ -1,4 +1,4 @@
function C = le(A,B)
function C = le(A,B) % --*-- Unitary tests --*--
% Overloads the <= operator for dynDates objects.
%

View File

@ -1,4 +1,4 @@
function C = lt(A,B)
function C = lt(A,B) % --*-- Unitary tests --*--
% Overloads the < operator for dynDates objects.
%

View File

@ -1,4 +1,4 @@
function B = uplus(A)
function B = uminus(A) % --*-- Unitary tests --*--
% Overloads the unary plus operator for dynDates objects. Shifts all the elements by one period.
%

View File

@ -1,4 +1,4 @@
function B = uplus(A)
function B = uplus(A) % --*-- Unitary tests --*--
% Overloads the unary plus operator for dynDates objects. Shifts all the elements by one period.
%

View File

@ -1,4 +1,4 @@
function time = add_periods_to_array_of_dates(time, freq, p)
function time = add_periods_to_array_of_dates(time, freq, p) % --*-- Unitary tests --*--
% Adds a p periods (p can be negative) to a date (or a set of dates) characterized by array time and frequency freq.

View File

@ -1,4 +1,4 @@
function C = compare_vectors(f, A, B)
function C = compare_vectors(f, A, B) % --*-- Unitary tests --*--
% Performs lexicographical comparison of vectors.
%