10-08-2008 07:34 PM
Hi there,
I need to create a vector and for that I am using the formula node. I am doing that in C ( in which I really am a beginner) whereas in MATLAB the program some time runs some time it does not.
Attached is the program, the error list says:
Error on line 3 is marked by a '#' character: " int32 j; double# Rv[14]; Iv[14]; for "
Can anyone help?
thank you in advance
Solved! Go to Solution.
10-08-2008 08:35 PM
You have 2 syntax errors on that line. The proper term is not double but float64. And separate the two arrays with a comma and not the end of statement semicolon.
Make it look like this and the broken run arrow goes away.
float64 Rv[14], Iv[14];
10-09-2008 09:53 AM
Hi Raven Fan,
Thanks a lot. it really helps.
Sincerely ,
Helaka