Displaying 2 results from an estimated 2 matches for "if_1".
Did you mean:
i_1
2009 May 04
1
wrong if-else syntax
What is wrong in the following nested if-else statements:
if (Condition_1) { # begin IF_1
statement_1
statement_2
statement_3
if (Condition_2) { # begin IF_2
a<- a +1
} # end IF_2
statement_4
statement_5
statement_6
statement_7
if (Condition_3) {...
2009 May 05
1
self organizing map advice for categorical data
...at stat.math.ethz.ch
Message-ID: <49FECBBF.2000509 at stats.uwo.ca>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
On 04/05/2009 5:08 AM, mauede at alice.it wrote:
> What is wrong in the following nested if-else statements:
>
> if (Condition_1) { # begin IF_1
> statement_1
> statement_2
> statement_3
> if (Condition_2) { # begin IF_2
> a<- a +1
> } # end IF_2
> statement_4
> statement_5
> statement_6
>...