Skip to content

Commit

Permalink
[UPDATE] README.
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed May 30, 2015
1 parent 2602700 commit 0866166
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ A `Matrix` has a constructor having the following interface...

#### mat.constructor( data, shape, dtype )

Creates a new `Matrix` having a specified `shape` and `dtype`.
Creates a new `Matrix` having a specified `shape`, `dtype`, and underlying typed `data` store.

``` javascript
var data = new Float32Array( 10 );
Expand Down Expand Up @@ -271,7 +271,7 @@ For performance, a lower-level interface is provided which forgoes some of the g
<a name="matrix-raw"></a>
#### matrix.raw( [data,] shape[, dtype] )

Creates a new `Matrix`.
Creates a new `Matrix` having a specified `shape`.

``` javascript
var data = new Float32Array( 10 );
Expand Down

0 comments on commit 0866166

Please sign in to comment.