Recent content by mayeeta
-
M
8.9 earthquake in Japan: tsunami warnings
Abandoned Cattle Near Fukushima https://www.youtube.com/watch?v=http://youtu.be/eVAorP4J5L4 http://youtu.be/eVAorP4J5L4 Heartbreaking.- mayeeta
- Post #669
- Forum: Earth Sciences
-
M
Maple Convert Old Maple Code for Maple 10
There is also this: map(g-> 'if' (indets(g) minus {x}...) Maple 10 don't recognize 'if'- mayeeta
- Post #2
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
M
Maple Convert Old Maple Code for Maple 10
I just started using Maple 10(old computer is destroyed), and it doesn't recognize some terms that I used to use with older Maple. Can someone convert this for me? Many thanks. code: if type( f, '+' ) then return... Maple 10 don't recognize '+' print ('a['||i||']'= a[i]) Maple 10...- mayeeta
- Thread
- Maple
- Replies: 1
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
M
How can I use iteration to compute a continued fraction for pi in Matlab?
I tried to do it backward, and I got this p = ((2*n+1)^2)/6; for k = n:-1:1 p = 6+(2*n-1)^2/p; end f=p+3 How to fix it? I think it's closer to the right answer.- mayeeta
- Post #3
- Forum: Precalculus Mathematics Homework Help
-
M
How can I use iteration to compute a continued fraction for pi in Matlab?
Homework Statement Via iteration. A continued fraction for pi is: Write an algorithm to compute this to n terms using Matlab. 1st term would be 3+1/9 The Attempt at a Solution p = '1'; for k = 1:n p=3+(-1+2^n)/(3+p); end p I'm very new to programming, and I can...- mayeeta
- Thread
- Fraction Pi
- Replies: 4
- Forum: Precalculus Mathematics Homework Help