1function C = gb_scalar_to_full (m, n, type, fmt, scalar)
2%GB_SCALAR_TO_FULL expand a scalar into a full matrix
3
4C = gbsubassign (gbnew (m, n, type, fmt), gbfull (scalar)) ;
5
6