]> Cypherpunks repositories - gostls13.git/commit
cmath: new package
authorCharles L. Dorian <cldorian@gmail.com>
Tue, 6 Apr 2010 05:10:27 +0000 (22:10 -0700)
committerRuss Cox <rsc@golang.org>
Tue, 6 Apr 2010 05:10:27 +0000 (22:10 -0700)
commit2e90f66eff474cfb88d93283637ad3f60d177749
tree44924f061bb29f785b9bba6268b8d933480497df
parentd08728f1e13c70af122f95ef54c6b06702599494
cmath: new package

Complex math function package. Still needs more special case checking.

R=rsc
CC=golang-dev
https://golang.org/cl/874041
17 files changed:
src/pkg/Makefile
src/pkg/cmath/Makefile [new file with mode: 0644]
src/pkg/cmath/abs.go [new file with mode: 0644]
src/pkg/cmath/asin.go [new file with mode: 0644]
src/pkg/cmath/cmath_test.go [new file with mode: 0644]
src/pkg/cmath/conj.go [new file with mode: 0644]
src/pkg/cmath/exp.go [new file with mode: 0644]
src/pkg/cmath/isinf.go [new file with mode: 0644]
src/pkg/cmath/isnan.go [new file with mode: 0644]
src/pkg/cmath/log.go [new file with mode: 0644]
src/pkg/cmath/phase.go [new file with mode: 0644]
src/pkg/cmath/polar.go [new file with mode: 0644]
src/pkg/cmath/pow.go [new file with mode: 0644]
src/pkg/cmath/rect.go [new file with mode: 0644]
src/pkg/cmath/sin.go [new file with mode: 0644]
src/pkg/cmath/sqrt.go [new file with mode: 0644]
src/pkg/cmath/tan.go [new file with mode: 0644]