Search the web
Sign In
New User? Sign Up
ch_language · Ch Language
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 900 - 929 of 1027   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
900
I've done a quick look and didn't find an answer to this question. We use Embedded Ch within our product to handle some really basic functions in some external...
fruber.malcome
Offline Send Email
Oct 7, 2008
10:52 pm
901
... Embedded Ch users' guide has the detailed information about how to minimize the size of the distribution. You can also check the FAQ link below. ...
groupsupport@...
one2001boy
Offline Send Email
Oct 8, 2008
2:04 am
902
so anytime i try to run a program in ch ide, i get a message in the output screen that says "access is denied" why is this? can i fix it? thanks, nick...
stop12345now
Offline Send Email
Oct 28, 2008
11:13 pm
903
... Are you running under Linux or Windows? what is your OS version? If you try to write a directory without proper permission, you may get such a message. Can...
groupsupport@...
one2001boy
Offline Send Email
Oct 29, 2008
6:07 am
904
... get such a ... this is the code for a program i am running windows vista home premium. /*file:rand.c*/ #include <stdio.h> #include <stdlib.h> int main(){ ...
stop12345now
Offline Send Email
Oct 29, 2008
4:48 pm
905
Apart from using the new IDE and successively eliminating features used in a script, does the group have any suggestions on how to isolate problems giving rise...
Jan Theodore Galkowski
disneylogic
Offline Send Email
Oct 31, 2008
5:57 pm
906
... Well, one thing that made it go away was doing an "exit(0)" from main rather than a "return 0". Hmmmm....
Jan Theodore Galkowski
disneylogic
Offline Send Email
Oct 31, 2008
8:02 pm
907
... Here's the source which gives rise to the problem, very slightly sanitized. (The file names have been elided.) If anyone's got a clue, appreciate it. ...
Jan Theodore Galkowski
disneylogic
Offline Send Email
Oct 31, 2008
8:03 pm
908
Jan, Your code has an extra ";" for the function main() which should not take any returned integer. int main( void ); Ch allows C code to run without main()...
groupsupport@...
one2001boy
Offline Send Email
Nov 1, 2008
5:25 pm
909
Hah! It figures! Sorry for the distraction over such a trivial mistake. I've sometimes actually taken Ch code and passed it through gcc in "pedantic" C99 mode...
Jan Theodore Galkowski
disneylogic
Offline Send Email
Nov 2, 2008
4:35 pm
910
Anyone know a source for 3D kernel smoother C code or multivariate that can be specialized to that? I have NAG for Ch, and am aware of g10bac and the other...
Jan Theodore Galkowski
disneylogic
Offline Send Email
Nov 2, 2008
7:00 pm
911
hi to all. i've just started using ChIDE for plotting some graphs but i'm having issues. this is my code: #include <stdio.h> #include <math.h> #include...
ecasbadecas
Offline Send Email
Nov 3, 2008
6:19 pm
912
A couple of things wrong with your code. You are using linspace, one its deprectated, and two, it will wipe out your values filling the array with values...
jasonhonda85
Offline Send Email
Nov 3, 2008
7:40 pm
913
... help ... have ... having ... simple ... i ... heys guys problem solved..... i was reading int and was storing double in the array.all good now....
ecasbadecas
Offline Send Email
Nov 3, 2008
11:22 pm
914
[ Charset ISO-8859-1 converted... ] ... you can use "ch -n" to parse, but do not execute a program. It will detect the syntax errors before you execute the...
groupsupport@...
one2001boy
Offline Send Email
Nov 9, 2008
11:48 pm
915
Does CH have any provisions to easily read data files, extracting columns without looping, for further processing on all or a subset of the data like...
kns99ca
Offline Send Email
Nov 10, 2008
2:14 am
916
It depends, in part, on how large the columns are in each case. It is IMO easy to read columns of data with sscanf. Yes, loops are required, but if one writes...
Jan Theodore Galkowski
disneylogic
Offline Send Email
Nov 10, 2008
1:31 pm
917
The C source to DM is in fact available but with a restrictive license. From my naive perspective, the beauty of DM is that all it cares about is the *type*...
kns99ca
Offline Send Email
Nov 10, 2008
11:02 pm
918
Ch supports shell programming. You may use commands dm, awk, cut, etc., such as char filename[] = "rawdata.dat"; dm $(filename) inside a Ch script to process a...
groupsupport@...
one2001boy
Offline Send Email
Nov 11, 2008
12:30 am
919
Hi, When I try to run: char * strcpy(int dst, int src) { return ""; } main() { strcpy(0,1); } CH complains that: ERROR: found int where string is expected ...
neilliehoo
Offline Send Email
Nov 12, 2008
10:10 pm
920
... yes. You can. You can use #pragma remkey (strcpy) in a program remove it. Then, redefine it. strcpy() is a standard C function. It is not recommended to...
groupsupport@...
one2001boy
Offline Send Email
Nov 13, 2008
5:43 pm
921
Hi T.S., Thanks for your reply. ... It is for an old code base so I do not have a lot of choice. But it is correct C isn't it so why does it require a #pragma?...
W. de Hoog
neilliehoo
Offline Send Email
Nov 14, 2008
2:13 pm
922
Hello, I am trying to convert a Linux-based intrusion detection system to a Mobile-C agent-based system. However, the system is dependent partly on the...
steve_b2626
Offline Send Email
Nov 18, 2008
3:19 pm
923
... not sure exactly what you want achieve. Assume you want to call the kernel space C functions, it should not be a problem. You can find more at the link...
groupsupport@...
one2001boy
Offline Send Email
Nov 18, 2008
9:15 pm
924
Hi, When I try to run this code: #include <stdio.h> long bla(char * s, ...) { printf(s,...); return 0; } int bli(int a, int b) { return 0; } main() { ...
neilliehoo
Offline Send Email
Nov 25, 2008
4:34 am
925
Hello! I have joined this group long time ago, but I was tempted to ask something since I found someone was asking a question about drag coefficient. My...
Unknown
donny_licoln
Offline Send Email
Nov 30, 2008
2:52 pm
926
Well I learned some more. First that passing the '...' will not work. It probably shouldn't even but I'll leave that to the Ch experts. What should work is...
neilliehoo
Offline Send Email
Dec 2, 2008
8:46 pm
927
... Ch Student edition or Ch Professional llows you to do plotting. see CHHOME/docs/chguide.pdf in chapter about plotting. ... For Windows, you can use the...
groupsupport@...
one2001boy
Offline Send Email
Dec 2, 2008
9:03 pm
928
... Answering myself again. From the chguide.pdf: #define display(...) printf(__VAR_ARGS__) regards, Willem-Jan de Hoog...
neilliehoo
Offline Send Email
Dec 3, 2008
3:13 pm
929
... Good to know that it works for you now. Best regards, T.S...
groupsupport@...
one2001boy
Offline Send Email
Dec 4, 2008
12:54 am
Messages 900 - 929 of 1027   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help