Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fmtComplex (0.23 sec)

  1. src/fmt/print.go

    		p.fmt.fmtFloat(v, size, verb, 6)
    	case 'F':
    		p.fmt.fmtFloat(v, size, 'f', 6)
    	default:
    		p.badVerb(verb)
    	}
    }
    
    // fmtComplex formats a complex number v with
    // r = real(v) and j = imag(v) as (r+ji) using
    // fmtFloat for r and j formatting.
    func (p *pp) fmtComplex(v complex128, size int, verb rune) {
    	// Make sure any unsupported verbs are found before the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top