a few Maple10/11 projects | Wave Deconstruct / reconstruct | Is/If with Assuming in Maple | A Maple coffee table | Calculate area between two curves | HTML color codes using Maple |
download Maple 11 worksheet | visit Maplesoft now ! |
restart; with(plots); with(LinearAlgebra); myMatrix := Matrix(1 .. 31, 1 .. 31); b := 1; for a from -15 to 15 do myMatrix[b, b] := a^2; myMatrix[32-b, b] := a^2; b := b+1 end do; matrixplot(myMatrix, orientation = [20, 250]); |