ccl_math_mgmat
PURPOSE
G = ccl_math_mgmat(dim, i, j, theta)
SYNOPSIS
function G = ccl_math_mgmat(dim, i, j, theta)
DESCRIPTION
CROSS-REFERENCE INFORMATION
This function calls:
This function is called by:
SOURCE CODE
0001 function G = ccl_math_mgmat(dim, i, j, theta)
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 G = eye(dim) ;
0013 G(i,i) = cos(theta) ;
0014 G(j,j) = cos(theta) ;
0015 G(i,j) =-sin(theta) ;
0016 G(j,i) = sin(theta) ;
0017 end
Generated on Mon 01-Jan-2018 15:49:39 by m2html © 2005