Skip to content

Commit

Permalink
catching up with Robby's fix and making drdr happy -- clearly this ex…
Browse files Browse the repository at this point in the history
…port should not come from a teachpack, so something will have to change
  • Loading branch information
mfelleisen committed Jul 29, 2014
1 parent 7472058 commit 753fb13
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pkgs/htdp-pkgs/htdp-doc/teachpack/htdp/scribblings/matrix.scrbl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#lang scribble/doc

@(require scribble/manual "shared.rkt"
(for-label scheme teachpack/htdp/matrix lang/posn))
(for-label scheme teachpack/htdp/matrix htdp/matrix lang/posn))

@teachpack["matrix"]{Matrix Functions}

Expand Down Expand Up @@ -77,3 +77,12 @@ creates a matrix minor from @racket[m] at (@racket[i],@racket[j])}

@;defproc[(matrix-set! [m matrix?][i (and/c natural-number/c (</c (matrix-rows m)))][j (and/c natural-number/c (</c (matrix-rows m)))] [x any/c]) matrix?]{like @racket[matrix-set] but uses a destructive update}

@section{Matrix Snip}

@(require (for-label (only-in mrlib/cache-image-snip cache-image-snip%)))

The @racket[htdp/matrix] teachpack exports the @racket[snip-class%] to
support saving and reading matrix snips.

@defclass[snip-class% cache-image-snip% ()]{
A 2-D graphical matrix.}

0 comments on commit 753fb13

Please sign in to comment.