Search results

  1. B

    XCode and Database Access

    Bit out of my depth here when talking about databases and CoreData but I suggest you post on one of the apple lists, probably the cocoa dev mailing list would be best. lists.apple.com I thought that you could use coredata as a 'wrapper' for SQLite? Here is a snip from a recent post over...
  2. B

    Cannot Unmount Disk Images

    Hi, Thanks for the advice there, this is what I already did.I actually think this could be a bug? What do people think....? Dan
  3. B

    Cannot Unmount Disk Images

    Hi folks, Quite a simple problem. After downloading a .dmg file to install software or putting in a USB Memory Stick etc I cannot unmount the images from my desktop! They just stay there. The same is true for ftp servers I am connected to, I cannot get rid if them in the normal way. Only...
  4. B

    Building scientific graphical application

    Hi again, There actually doesn't seem to be a e-mail address attached to either the picture of the button that says e-mail! If you want to stop spammers from getting e-mail address I suggest you send me a private message or send me an e-mail and boyfarrell at geeeeeee mail dot com (you can...
  5. B

    Building scientific graphical application

    Hi there, I'm doing exactly the same thing and for optical spectroscopy! I do plots from inside xcode (i.e. plotting C arrays) with gnuplot via gnuplot_i and displayed with aquaterm. If you search on this forum for 'gnuplot' you should find more info or have a look at the tutorial here...
  6. B

    Viewing BBC News Video

    Hi Dennis, I hate RealPlayer with a passion and it's crappy second thought of an implementaion on MacOS. I have the same problem as you. Actually, I think this is a software problem (PowerPC and Intel independent) because I'm on a G4 PowerBook. I have spent hours trying to fix this but to...
  7. B

    Safari and RealPlayer Problems at bbc.co.uk

    How do I go about opening up the ports? I had a look in the sharing system pane, but there wasn't anything obvious in the firewall setting that would restrict/allow realplayer or safari to work. Sarari has access to ports 443 (http) and 80 (https), I added RealPlayer to the list just now, it...
  8. B

    Safari and RealPlayer Problems at bbc.co.uk

    Hi folks, I would like to be able to watch video streamed from by the BBC from their website. I have installed RealPlayer and check that it is the default for opening .rm extentions, I have also check in the Safari Menu Help->Installed Plugins that RealPlayer will play .rm files. I even...
  9. B

    downloading .rar in safari

    Post a link to a .rar an I'll haVE GO... OPPS CAPS LOCKS ON
  10. B

    Keeping the neighbours out of my wi-fi

    From what I understand WPA is the preferred form of protection... Listen to the security now podcast episodes 11 and 13 here: http://www.grc.com/securitynow.htm for info on wireless security.
  11. B

    long double with MATLAB?

    Hi, I did something quite similar (though not a slick), I included the path to the header file in the #include of all the C source files... and guess what... it still doesn't work! I'm going to give up at this point. I have a few more ideas but, like manually compiling the gmp and mpfr...
  12. B

    long double with MATLAB?

    Thanks for that have given it a go. It seems to have updated the varible: DYLD_LIBRARY_PATH=/Applications/MATLAB7/sys/os/mac:/Applications/MATLAB7/bin/mac:/Applications/MATLAB7/extern/lib/mac:/opt/local/lib:/opt/local/include:/Applications/MATLAB7/sys/opengl/lib/mac However, when I try to...
  13. B

    long double with MATLAB?

    Great, I didn't spot that page when looking thanks very much. I have been messing around trying to find where exactly to update the path. Inside the .matlab7rc.sh file I found some instruction on how to edit the path and also the actual code where I need to make the changes. Could somebody...
  14. B

    Passing Pointer to Objects In and Out.

    Hi folks, I'm trying to pass out a C array of objects from a particular method but I am having memory problems. Strangely, this works when I autorelease the objects but not when I pass them out and release them from the main.m? So my question is, is the autorelease actually working here? As I...
  15. B

    long double with MATLAB?

    Hi, I'm up to the stage: "...Then, in the @mp/private/ directory, start Matlab and run mp_compile_all.m This will attempt to mex each of the *.c routines in that directory..." However, I don't think my LD_LIBRARY_PATH is set propertly. Where do I set this? The LD_LIBRARY_PATH in xterm...
  16. B

    long double with MATLAB?

    Hi Viro, It depend on how the long double is defined, this is hardware specific. PowerPC is defines it in such away so not to increase the range only the precision. However, long double on AMD (and may be intel) increases the range. I have GMP installed on the Mac for my C apps but I didn't...
  17. B

    long double with MATLAB?

    Great, I'll give that cast function a go. Think that page must have slipped me by when I looked, cheers. Daniel.
  18. B

    long double with MATLAB?

    Hello everybody, The internet seems to be a bit dry when it comes to this topic, but can MATLAB do long double math computations and functions? It's not obvious if it does... Daniel.
  19. B

    ? Possible ?: Making a method that accepts either an object or primative?

    Well this works. Not quite as simple as I wanted it, I have to sent it a NSNumber rather than a primative but hey how slick can you be.... -(CustomClass*) add: (id) inputObject { if ([inputObject isKindOfClass:[CustomClass class]]) { //Do stuff with inputObject when it is a...
Back
Top