Home > Matching_SYM_LSM > src > Functions > LSM_Functions > square_corners.m

square_corners

PURPOSE ^

generate corners of centred square of size N

SYNOPSIS ^

function sc = square_corners(N)

DESCRIPTION ^

 generate corners of centred square of size N

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function sc = square_corners(N)
0002 % generate corners of centred square of size N
0003 
0004 sc = [-N -N N N;-N N N -N;1 1 1 1];
0005 
0006 end
0007

Generated on Sun 19-Jul-2020 23:00:25 by m2html © 2005