%> @brief Computes the norm of F. That is the norm of F's full storage matrix.
%> @brief Computes the norm of F.
%>
%> Several types of norm are available: 1-norm, 2-norm and Frobenius norm.
%>
%> @b Note: the norm of F is equal to the norm of its dense matrix.
%>
%> @b WARNING: this function costs at least as much as Faust.mtimes.
%>
%>
%> @param F the Faust object.
%> @param ord the norm order. Respectively 1 or 2 for the 1-norm and 2-norm or 'fro' for the Froebenius norm.
%> @param ord (optional) the norm order. Respectively 1 or 2 for the 1-norm and 2-norm or 'fro' for the Frobenius norm (by default the 2-norm is computed).
%> @param faust_type must be one of Faust.DENSE, Faust.SPARSE or Faust.MIXTE (the latter is for authorize generation of factors dense and sparse in the same Faust).
%> @param faust_type must be one of Faust.DENSE, Faust.SPARSE or Faust.MIXTE (the latter is for allowing generation of dense and sparse factors in the same Faust).
%> @param field must be Faust.REAL or Faust.COMPLEX.
%> @param min_num_factors the minimal number of factors generated.
%> @param max_num_factors the maximal number of factors generated.
%> @param min_dim_size the minimal size of column and row dimensions of the Faust generated.
%> @param max_dim_size the maximal size of column and row dimensions of the faust generated.
%> @param max_dim_size the maximal size of column and row dimensions of the Faust generated.
%> @param density the approximate density of factors generated.