I see what's going on now. So, you can more finely control output format by writing the matrix with nested for loops: for (i=0; i < N; i++) { for (j=0; j < M;...
good idea, I have made a little correction and it works: for (i=0; i < N; i++) { for (j=0; j < M; j++) { fprintf(opf, "%d ", v[i][j]); } fprintf(opf,"\n") ; } ...
I have numerous C source files that I can compile natively and run under windows. The application created from these source files creates numerous threads...
... multi-threads do not work properly in the current version of Ch. You may compile the code with multi-threads in binary lib and use Ch SDK to interface with...
Hello, Is there some way to check the status/existence of active variables from the command-line interpreter? This would be the MATLAB equivalent of 'who' or...
... Just type the variable name at the command prompt, this will give you the value for a single variable. To get all variables, embedded ch provides the APIs....
Hello, I am having some difficulty loading and displaying images from the command line. I installed OpenCV and am able to successfully run the demo scripts....
I apologize for posting something so innane. I installed CHStandard on my home PC as I did my work PC, not realizing I had a H: drive already in the home PC, a...
Since you appear to be familiar with the windows registry and regedit, can you double check to see if you have removed the unstinstall reference keys for Ch?...
... check the link below: http://www.softintegration.com/support/faq/generalprog.html and look for the answers to the following two questions. Q: How to call...
... I'd like to thank you for your posts. I reloaded and began to re-edit a registry file from over week ago, and realized I had deleted the human readable...
Hello all, Can anybody tell me how to uninstall the Unix versions of Ch? I'm specifically wondering about the FreeBSD version. Thanks. P.S. SoftIntegration -...
Just try to directly remove the /usr/local/ch... No more anctions needed. Regards. kevin_v_wood wrote: Hello all, Can anybody tell me how to uninstall the Unix...
Also can do: cd / find | grep ch to find the list, then delete them. Regards. Wang Zhan Feng wrote: Just try to directly remove the /usr/local/ch. .. No more...
Hello I am using Red Hat Linux 9 and I am unable to run video clips in this os I downloaded one package which can run only audio files but i need to run video...
Dear Mahipal, You email is a little unclear and appears to have nothing to do with Ch. In any case, try downloading either mplayer (http://www.mplayerhq.hu),...
Hi!! I'm using Visual C++. When I try to link the libraries I get the following error: dataFile.obj : error LNK2005: _main bereits in doppelpendel.obj...
Dear Group members, I am running Ch 5.5.13001 Pro running over Windows XP Pro Home or Pro. gnuplot 4.1 patch level 0. I am gnuplotting candlesticks by building...
... To start simple, can you compile the sample code at the directory c:\silib\demos\chapeter2\data2D.cpp? For VC 6.0, you need to add c:\silib\include to your...
... type PLOT_PLOTTYPES_CANDLESTICKS and many others will be added to Ch Professional and SIGL plotting library next release. You may check if the following...
Sorry if this is a duplicate - I am trying to work with GTK - I can run the testglibc.c demo just fine.I can compile and run the demo under gtk using the...
I am trying to run the GTK demos - I can run the testglib.c demos fine. I can compile the helloworld.c demo with the following Makefile 3 FLAGS=`pkg-config...
Dear Richard, Can you please verify that you have GTK+ (v1.1 or 1.2) installed on your system and not just GTK+-2.0. Try compiling helloworld.c using the...
... `gtk-config ... directory ... Thanks - I have both gtk 1 & 2 installed - My confusion was regarding the paths and configurations for the compiler in...