I have fixed the calculation of Julian Day in Frink for dates B.C., including dates in the very distant past. Because Frink internally uses Julian Day to...
... From: Alan Eliasen <eliasen@...> ... But those intervening dates are not undefined. They all have the same value. All of the dates in that...
first.i.last@...
Aug 4, 2008 3:43 am
218
The link to what google considers the main Frink page at http://futureboy.homeip.net/frinkdocs/ has not been functioning for 4 days. Is there a replacement...
... Augh. Thanks for letting me know. It's now back up. The preferred URL is: http://futureboy.us/frinkdocs/ which points to the same machine, and was...
I've been wanting to use frink for doing calculations internally in a program and I'm wondering if there is a supported way to do this? (its for an IRC bot)....
... section ... I don't know how i've overlooked that all of last night. ... people ... them ... I would certainly be interested in any documentation on this,...
... I've added a single convenience method to easily enable the most restrictive security measures on a Frink interpreter. This should be called before...
Hi, I just purchased an ipod touch and was looking for a good unit converter for scientific and engineering applications. The current applications available...
... In short, it's up to the management at Apple. Frink is written in Java and requires a Java Virtual Machine (JVM) to run in. (A JVM is just another piece...
I'm happy to announce that Frink can now draw graphics! This is probably the largest single update of Frink ever, and it adds the ability to easily draw...
The latest Frink release adds the ability to draw text into Frink's new graphics. Text is high-quality, and has transparent, anti-aliased edges. Text can...
There have been a variety of improvements to Frink since my last announcement on this list. Here are some of them: * Frink's graphics package now has a new...
It appears that I'll be making more common announcements about new Frink releases to this list. I had previously used Freshmeat.net to make new announcements,...
The new Frink release adds some powerful new image loading and drawing capabilities! Frink now has the ability to load bitmap image files (e.g. JPEG, GIF,...
I probably don't understand intervals well enough yet, but if x = new interval[-2,2] [-2,2] and x^2 [0, 4] then why doesn't abs[x] yield [0,2]? Further, why...
... Good question. The short answer is that I'm following the convention for abs[x] that's defined in one of the seminal works on interval arithmetic, Ramon...
I posted a query about abs[x] to the primary interval analysis mailing list last night, and have received several replies, some directly useful, some not. I'm...
I'm forwarding my follow-up message about abs[x] to the intervals list, which discusses the results of my surveys of other programming languages that implement...
The current release of Frink fixes some "Class not found" exceptions that may have occurred when calling some functions, notably graphics.write[] and...
... As of the current release, the behavior of the abs[x] function is changed for interval arguments (real or complex arguments are not changed.) It now does...
I ran the example from the documentation for graphics: g = new graphics. However in the units.txt datafile, g is used for the gram units. Is there some way to...
... Doug, Unfortunately, no, at this point, there is no way to undefine a local variable. If it goes out of scope (e.g. when you exit the function in which...
The latest release of Frink adds the ability to get and set individual pixels of an image, or to average the pixels in parts of an image. This allows image...
The latest release of Frink has significant new functionality, especially for symbolic algebra. The compiler now tries to perform more symbolic simplification...
Consider this frink program: x = new interval[-1,1] y = new interval[-1,1] println[x-y] println[x-x] The results are: [-2, 2] [-2, 2] The first one makes...
Kelly Jones
kelly.terry.jones@...
Aug 4, 2009 5:21 am
243
In sun.frink, I noticed that sunset[] doesn't take elevation as a paramater. However, elevation does affect sunrise/set time: the greater your elevation, the...
Kelly Jones
kelly.terry.jones@...
Aug 4, 2009 5:21 am
244
Consider this frink program: f[x] := { x+7 } println[f[y]] println[f[y]*f[y]] The results: Warning: undefined symbol "y". 7 + y Warning: undefined symbol "y". ...
Kelly Jones
kelly.terry.jones@...
Aug 4, 2009 5:21 am
245
... Kelly, Good question. When desiging Frink, I always intended that symbolic calculations would be possible, but the symbolic transformations that are...