Tagged Questions
3
votes
2answers
153 views
tan ( pi/2 ) in objective-c (math.h) not undefined
I wrote this test code:
NSLog(@"%g", tan(M_PI / 2.0));
and the output of the console is:
1.63312e+16
The issues is about approximation, right? Did I make some mistakes or the tan function of ...
-1
votes
4answers
737 views
Calling functions from within function(float *VeryBigArray,long SizeofArray) from within objC method fails with EXC_BAD_ACCESS
Ok I finally found the problem. It was inside the C function(CarbonTuner2) not the objC method. I was creating inside the function an array of the same size as the file size so if the filesize was ...