


GETDOFCOUNT - get number of degrees of freedom of the system
Usage:
dofcount=getdofcount(grids)

0001 function dofcount=getdofcount(grids) 0002 %GETDOFCOUNT - get number of degrees of freedom of the system 0003 % 0004 % Usage: 0005 % dofcount=getdofcount(grids) 0006 0007 %Easy for now, as there are 6 dofs per grid 0008 dofcount=length(grids)*6;