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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 258 - 287 of 1027   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
258
I have a multi-dimension array and would like to copy one row to another array. (see example below) array int A[2][3] = { {1,2,3}, {4,5,6} }; array int B[3]; B...
treyhaslem
Offline Send Email
Mar 2, 2006
6:06 pm
259
... We need to get a new eval license from NAG. we will send you an email in person once it is updated soon. Thanks for your report. Tech support...
groupsupport@...
one2001boy
Offline Send Email
Mar 2, 2006
6:24 pm
260
... You can use: B = (array int [3])&A[0][0]; Best regards, Tech support...
groupsupport@...
one2001boy
Offline Send Email
Mar 2, 2006
9:24 pm
261
What if I wanted to do the following: array int A[2][3] = { {1,2,3}, {4,5,6} }; array int B[2][3]; B[1] = A[0];...
treyhaslem
Offline Send Email
Mar 3, 2006
6:14 pm
262
Hello all, Does anybody know of any commercial web-hosting services that are using Ch CGI? Thanks....
kevin_v_wood
Offline Send Email
Mar 5, 2006
1:47 am
263
You can try: memcpy((char *)&B[1][0],(char*)&A[0][0],sizeof(int)*3) treyhaslem <treyhaslem@...> wrote: What if I wanted to do the following: array int...
zhaoqing wang
thezqwang
Offline Send Email
Mar 6, 2006
8:54 am
264
Thanks. ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around ...
Lawrence Haslem
treyhaslem
Offline Send Email
Mar 6, 2006
2:23 pm
265
Dear All, i'm jst starting to see whether i can use CH for both teaching (university courses in computer vision) and for making demo's of my (research) work. ...
rvdboomgaard
Offline Send Email
Mar 6, 2006
8:49 pm
266
... that is right. ... The code using computational arrays cannot be compiled in C/C++ compiler. It needs a front preprocessor to convert code using ...
groupsupport@...
one2001boy
Offline Send Email
Mar 7, 2006
12:00 am
267
... memcpy() solution from Zhaoqing is a good way to go. In the future release, it will be improved so that you can do array int A[2][3] = { {1,2,3}, {4,5,6}...
groupsupport@...
one2001boy
Offline Send Email
Mar 7, 2006
12:39 am
268
I am trying to reshape a matrix. The following will not work. Can someone help me. array int A[1][2] = { 1,2}; (array int[1][3])A; Thanks in advance...
ldhaslem
Offline Send Email
Mar 7, 2006
2:26 pm
269
... It cannot cast from a small array to a bigger array in its current implementation as shown below: c:/> array int A[1][2] = { 1,2}; c:/> (array...
groupsupport@...
one2001boy
Offline Send Email
Mar 7, 2006
6:59 pm
270
... Yes....
ldhaslem
Offline Send Email
Mar 7, 2006
7:37 pm
271
I wonder exactly what the possibilities are multi-threaded programming in Ch are? Is there a threads package available somewhere that runs on Ch? Reentrant...
bnielsen_bnielsen
bnielsen_bni...
Offline Send Email
Mar 9, 2006
12:08 pm
272
Dear All, i download chscite and i run into some pecularity i don;t understand. when i run chscite from a bash shell i can't run example programs from opencv...
rvdboomgaard
Offline Send Email
Mar 9, 2006
8:35 pm
273
... multiple Embedded Ch can be launched from binary C/C++ applications in different threads. ch itself doesn't support thread directly. C/C++ scripts contain...
groupsupport@...
one2001boy
Offline Send Email
Mar 10, 2006
1:45 am
274
... the problem you described shows that you need to set LD_LIBRARY_PATH for your bash at ~/.bashrc. Make sure it includes the path for libcxcore.so.* Best...
groupsupport@...
one2001boy
Offline Send Email
Mar 10, 2006
1:48 am
275
I get the following errors when running Ch code in Linux: Error: dlopen(): /usr/local/ch/dl/libmath.dl: cannot restore segment prot after reloc: Permission...
ldhaslem
Offline Send Email
Mar 15, 2006
12:36 am
276
... What is your output when running the following commands? ch dlopen("libmath.dl",1) Best regards, Tech support...
groupsupport@...
one2001boy
Offline Send Email
Mar 15, 2006
1:14 am
277
... I get the following: Ch Professional edition, version 5.1.0.12661 (C) Copyright 2001-2005 SoftIntegration, Inc. http://www.softintegration.com ... I get...
ldhaslem
Offline Send Email
Mar 15, 2006
6:20 pm
278
... you may type dlerror() to get more error information. Also, can you type "uname -a" to see what is your OS and version. Thanks. Tech support...
groupsupport@...
one2001boy
Offline Send Email
Mar 15, 2006
6:36 pm
279
I get the following when running uname -a: Linux localhost.localdomain 2.6.11-1.1369_FC4 #1 Thu Jun 2 22:55:56 EDT 2005 i686 athlon i386 GNU/Linux When I run...
ldhaslem
Offline Send Email
Mar 16, 2006
12:07 pm
280
I also get the following: Permission denied cannot get _Chstdio_handle in stdio.h ... segment ... segment...
ldhaslem
Offline Send Email
Mar 16, 2006
12:13 pm
281
... The latest Linux enabled new kernel security extensions (SELinux). SELinux also changes some default system behaviors, such as shared library loading. ...
groupsupport@...
one2001boy
Offline Send Email
Mar 16, 2006
8:04 pm
282
Solution #2 fixed the problem. Thanks! ... commenting...
ldhaslem
Offline Send Email
Mar 17, 2006
3:58 am
283
hello. double a = -5; int b =0; pow(a,b) gives nan but when given pow(-5,0) gives 1. do anyone know why this happens. kabilesh ... Yahoo! Travel Find great...
kabileshkumar cheetan...
cgkabilesh
Offline Send Email
Mar 19, 2006
4:04 am
284
This may be due to casting of two different types of variable you assigned in the Pow function. The same answer C language also gives. In the second case as...
Kumar subramanian
kumarsaraa
Offline Send Email
Mar 19, 2006
6:10 am
285
int a =-5 int b =0 pow(a,b) gives 1 double a = -5.0 double b =0.0 pow(a,b) gives nan the problem arises when the variable having 0 is double. Can we fix this. ...
kabileshkumar cheetan...
cgkabilesh
Offline Send Email
Mar 19, 2006
9:05 pm
286
... pow(x,y) will be updated to follow the C99 standard except for cases of pow(1, Nan) and pow(NaN,+/-0.0) as follows: Function C99 Ch ... ...
Harry_H_Cheng
Offline Send Email
Mar 20, 2006
1:50 am
287
hello u know one formula in the maths is any thing power zero is one. example a^0=1.a is a variable ok bye kabileshkumar cheetancheri <cgkabilesh@...>...
sai krishna
saikrishna0437
Offline Send Email
Mar 20, 2006
7:48 am
Messages 258 - 287 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