0 Members and 1 Guest are viewing this topic.
.Use 768 if images are created outside of the OS and may contain data in the last row!If GetCalc("Pic0",756)→P .Not enough RAMEndCopy(L₆,P,756)
The graph screen is L6, so it should be as simple as something like this:Code: [Select]!If GetCalc("Pic0",768)→P .Not enough RAMEndCopy(L₆,P,768)
!If GetCalc("Pic0",768)→P .Not enough RAMEndCopy(L₆,P,768)
how do i recall pic 0 on the screen?sorry i am kind of new at this..
Quote from: Runer112 on September 06, 2013, 11:23:22 amThe graph screen is L6, so it should be as simple as something like this:Code: [Select]!If GetCalc("Pic0",768)→P .Not enough RAMEndCopy(L₆,P,768)Actually that's kinda wrong, since TI-OS pics are 756 bytes.Quote from: Axe Programmer on September 06, 2013, 11:26:31 amhow do i recall pic 0 on the screen?sorry i am kind of new at this..All you have to do is to access TI-OS's Pic0 with GetCalc and copy it back to L6 (remember it's 756 bytes this time) :GetCalc("Pic0")→ACopy(A,L6,756)DispGraph
using OS functions to recall still chops off the bottom row of pixels, though, doesn't it?