Christopher2222

MaplePrimes Activity


These are questions asked by Christopher2222

I couldn't locate a command to change the default frames per second (fps) of 10.  Is there an option?

Just need some help using URL:-Get

Get("https://sdo.gsfc.nasa.gov/assets/img/browse/2023/05/05/20230505 _184918_512_0304.jpg")

I'm sure there are some tags to use but not sure how.  The site does show a script on best practices, but at the moment don't know how to apply them.  Can anyone offer some help?

(x^(3))^(1/3) doesn't simplify to x.  I am missing something.

For example - I have a for loop acting on a Matrix

a:=Matrix(20,20,rand(0..1.)

for i from 1 to 20 do
  for j from 1 to 20 do
    if a[i,j]<0.2 then a[i,j]:=0 end if:
  end do:
end do:

Is there an equivalent sequence loop?  I tried to set up a double seq to set the values in the matrix but this fails

seq(seq(`if`(a[i,j]<0.2,a[i,j]:=0,a[i,j]),i=1..20),j=1..20)

Is it possible to read in specific parts of a bmp image? 

1 2 3 4 5 6 7 Last Page 3 of 94