07-01-2011 10:46 AM
I am sending it an area that the indicator shows as a full decimal but recieve and integer. I have changed the data types from double to long to extended float etc without any results. Is there something I am doing wrong?
Solved! Go to Solution.
07-01-2011 10:49 AM
agator2 wrote:Is there something I am doing wrong?
Probably yes, If you post the code we'll take a look at it
07-01-2011 10:56 AM
Top right corner contains the formula boxes. Excuse the mess of code surrounding.
07-01-2011 11:00 AM
Are you talking about inputs and outputs of a formula node?
07-01-2011 11:01 AM - edited 07-01-2011 11:04 AM
@agator2 wrote:
Top right corner contains the formula boxes. Excuse the mess of code surrounding.
Remove the word "int" at the beginning of each formula node line, remove the conversion bullet later, and change the representation of the indicator terminals to DBL (right-click..representation...DBL).
07-01-2011 11:10 AM - edited 07-01-2011 11:10 AM
07-01-2011 12:26 PM
It says that I have undefined variables now
07-01-2011 12:35 PM
You need to create a terminal for "q" OR
r =sqrt(A/pi);
d = sqrt(A/pi)*2;
v = (4/3)*3.1415*r*r;
since q isn't used outside the node
07-01-2011 12:44 PM
thank you for the help