![]() | |
#1
| |||
| |||
|
|
Hi all, I wanted to check which functions are given in FMP8 now: unfortunately, FileMaker Corp. does not provide reasonable docu here again. I checked the manuals without success. But to my surprise I found an 'online demo' which should work the same as FMP7 itself. I did not see it on filemaker.com, but filemaker.de only: http://www.filemaker.de/runaware/index.html They claim it will require Java. However, it does not run on Win without Active-X, nor on Mozilla for Unix. What I wanted to check: Does FMP8 offer 'arc cos' by now? This is a function which is a typical requirement in order to calculate with GPS coordinates. FMP7 offers sin, cos, tan and atan, but no acos or arccos. How about FMP8? Still missing? |
#2
| |||
| |||
|
|
As far as I can see there are no additions in this area. You can do your own calculations of acos and asin using trignometric formulae. For example: trying to solve the equation cos(x) = y for x. We can write sin(x) = Sqrt(1 - y^2) tan(x) = Sqrt(1 - y^2)/y and finally x = atan(Sqrt(1 - y^2)/y) Technically there is sign indeterminacy in Sqrt but in practice there isn't because you have to place restrictions on the range of values for the solution x in order to get a unique answer. (This looks like the sort of thing which would make a custom function and I will be surprised if it has not been done somewhere) Martin Trautmann wrote: Hi all, I wanted to check which functions are given in FMP8 now: unfortunately, FileMaker Corp. does not provide reasonable docu here again. I checked the manuals without success. But to my surprise I found an 'online demo' which should work the same as FMP7 itself. I did not see it on filemaker.com, but filemaker.de only: http://www.filemaker.de/runaware/index.html They claim it will require Java. However, it does not run on Win without Active-X, nor on Mozilla for Unix. What I wanted to check: Does FMP8 offer 'arc cos' by now? This is a function which is a typical requirement in order to calculate with GPS coordinates. FMP7 offers sin, cos, tan and atan, but no acos or arccos. How about FMP8? Still missing? |
#3
| |||
| |||
|
|
On Fri, 2 Sep 2005 11:45:34 +0100, Dan wrote: As far as I can see there are no additions in this area. You can do your own calculations of acos and asin using trignometric formulae. For example: trying to solve the equation cos(x) = y for x. We can write sin(x) = Sqrt(1 - y^2) tan(x) = Sqrt(1 - y^2)/y and finally x = atan(Sqrt(1 - y^2)/y) thanks! acos (x) = case( x = 1, 0, x = -1, pi, pi/2 - atan (x / sqrt (1-x^2)) ) works very well. |
![]() |
| Thread Tools | |
| Display Modes | |
| |