Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 15c (0.01 sec)

  1. src/math/log1p.go

    //       algorithm can be used to compute log1p(x) to within a few ULP:
    //
    //              u = 1+x;
    //              if(u==1.0) return x ; else
    //                         return log(u)*(x/(u-1.0));
    //
    //       See HP-15C Advanced Functions Handbook, p.193.
    
    // Log1p returns the natural logarithm of 1 plus its argument x.
    // It is more accurate than [Log](1 + x) when x is near zero.
    //
    // Special cases are:
    //
    //	Log1p(+Inf) = +Inf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. src/text/tabwriter/tabwriter_test.go

    		4, 0, 0, '.', 0,
    		"a\t\tb",
    		"a.......b",
    	},
    
    	{
    		"15b",
    		4, 0, 0, '.', DiscardEmptyColumns,
    		"a\t\tb", // htabs - do not discard column
    		"a.......b",
    	},
    
    	{
    		"15c",
    		4, 0, 0, '.', DiscardEmptyColumns,
    		"a\v\vb",
    		"a...b",
    	},
    
    	{
    		"15d",
    		4, 0, 0, '.', AlignRight | DiscardEmptyColumns,
    		"a\v\vb",
    		"...ab",
    	},
    
    	{
    		"16a",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top