vote up 1 vote down star
2

Hi I need to graph some arrays to analyse signals, I have a cocoa project going. Can anyone tell me where I can find tools to simplify this task?

Basically i want to display my arrays like on a graphing calculator.

flag

..I'm looking for the mac equivalent of ZedGraph which is windows c# .net. I cannot use excel and matlab as i am debugging step by step. (In windows I would use messageBox as a sort of breakpoint and The program would redraw all the graphs on each messageBox call )...thx – yan bellavance Jul 5 at 21:44

3 Answers

vote up 5 vote down check

Even though it's a young library, I'd suggest looking at the open source Core Plot framework. It works on Mac and iPhone and can currently plot line and bar charts. As I said, it's young and a lot of the core functionality is still being written, but it might work right now for your case.

link|flag
thx that seems to be what im looking for – yan bellavance Jul 5 at 21:37
Got it working. This thing is awesome. – yan bellavance Jul 7 at 7:49
vote up 2 vote down

Take a look at this post to the Apple mailing lists. http://lists.apple.com/archives/scitech/2007/Jun/msg00022.html

It mentions 3 potential graphing packages that you can try. I have not had personal experience with them, so buyer beware, but it will at least give you a start on where to look.

link|flag
vote up 0 vote down

Hi Yan,

XCode allows you to create data formatters to present object data in the debugger, but it doesn't provide any way to graphically represent the data using charts or graphs. (At least, not that I know of!) I think that's beyond the scope of XCode. You might consider dumping the data from your array to a file using a bit of code or the console, and then loading it into Excel or MATLAB. Then you can create a graph of your signal with no problem.

Just out of curiosity, are you familiar with another IDE that provides graphs of array data? I know tools like MATLAB and Mathematica do it pretty nicely, but I've never seen it in an IDE.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.