This is an archived, read-only copy of the United-TI subforum , including posts and topic from May 2003 to April 2012. If you would like to discuss any of the topics in this forum, you can visit Cemetech's Technology & Calculator Open Topic subforum. Some of these topics may also be directly-linked to active Cemetech topics. If you are a Cemetech member with a linked United-TI account, you can link United-TI topics here with your current Cemetech topics.

This forum is locked: you cannot post, reply to, or edit topics. Math and Science => Technology & Calculator Open Topic
Author Message
Darth Android
DragonOS Dev Team


Bandwidth Hog


Joined: 31 May 2003
Posts: 2104

Posted: 31 Jul 2003 11:43:29 am    Post subject:

well, i specified (83+) for a reason. any ways, u can get the manual off of ti's website
Back to top
yugniht


Member


Joined: 29 May 2003
Posts: 167

Posted: 31 Jul 2003 10:05:09 pm    Post subject:

This thread got me interested in fractals again and I wrote a program to draw the mandelbrot set (NOTE: the squared character doesn't show up here so I did X*X instead, that's just an example though):


Code:
ClrDraw
FnOff
-4.7->Xmin
-3.1->Ymin
4.7->Xmax
3.1->Ymax

0->C

For(A,-2,2,.1
For(B,0,2,.1
0->I
0->X
sqrt(A*A+B*B)->D
A+Bi->E

While D<=2 and I<50        ;<= is less than or equal to
X*X+E->F
Ans->X
sqrt(real(F)*real(F)+imag(F)*imag(F)->D
I+1->I
End
If D<=2
Then
Pt-On(A,B
Pt-On(A,-B
End
C+1->C
Text(54,0,C
End
End


I also wrote one to draw a julia set. This means you enter a complex constant and it will draw a different set every time! I know it doesn't sound that exciting but I've never seen a program that did this on a calc. I wish I knew even simple assembly, I could probably make a great-looking and really fast program. Sad
Back to top
Darth Android
DragonOS Dev Team


Bandwidth Hog


Joined: 31 May 2003
Posts: 2104

Posted: 05 Aug 2003 03:06:23 am    Post subject:

post the basic code and ill seee how well it turns out for my second asm prgm
i need the practise
Back to top
yugniht


Member


Joined: 29 May 2003
Posts: 167

Posted: 05 Aug 2003 11:48:47 am    Post subject:

well, Bryan Thomas and I are currently making one in C. It'll do the mandelbrot and Julia sets and have some other options. This program will be good enough for practice. It just needs a few optimizations. Also, if your going to use greyscale, I'll post a modified basic code that'll show you how to do it. Yes, I know you can't do greyscale in basic but it'll get the general idea across.
Back to top
aforsy
the leaping penguin


Active Member


Joined: 13 Jul 2004
Posts: 653

Posted: 29 Sep 2004 12:23:49 pm    Post subject:

i was just browsing about fractals, and found this little thing here. pretty cool...or, at least it will be when my calc is finished drawing (so far it's not much, but the cod looks interesting, at least)

The only things i found were these:

Quote:

Code:
-4.7->Xmin
-3.1->Ymin
4.7->Xmax
3.1->Ymax


you can just say ZDecimal

Quote:

Code:
0->I
0->X


Delvar IDelvarX

besides those two things, it's great. thanks! i'd been looking for a fractal program for a while

EDIT: it finished, and was OK, just that it didn't show very much. just 20 pixels or so across. maybe change the window vars?

EDIT AGAIN: is there any way to make this fractal image bigger (filling the entire screen) or faster?


Last edited by Guest on 30 Sep 2004 11:47:04 am; edited 1 time in total
Back to top
Display posts from previous:   
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
    » Goto page Previous  1, 2
» View previous topic :: View next topic  
Page 2 of 2 » All times are UTC - 5 Hours

 

Advertisement