Voting

: zero plus two?
(Example: nine)

The Note You're Voting On

Anonymous
19 years ago
The example below didn't provide a 3x3 matrix. Correctly, it's a multidimensional array.

<?php
$matrix
= array( array( -1, -1, -1 ),
array( -
1, 16, -1 ),
array( -
1, -1, -1 ) );
?>

<< Back to user notes page

To Top