From: Matthew on
Is there a syntax that lets me put the transition text over multiple lines, on a transition with many conditions, having it all on one line is quite cumbersome/long?
From: checker i on
"Matthew " <mjreiland(a)gmail.com> wrote in message <hvflph$pbo$1(a)fred.mathworks.com>...
> Is there a syntax that lets me put the transition text over multiple lines, on a transition with many conditions, having it all on one line is quite cumbersome/long?

If I understand your problem correctly,
[Condition1 ...
Condition 2 ...
COndition 3 ]
Is this what your are trying to do?

Just end your condition with a '...'
From: Matthew on
"checker i" <checker.im(a)gmail.com> wrote in message <hvfugr$92g$1(a)fred.mathworks.com>...
> "Matthew " <mjreiland(a)gmail.com> wrote in message <hvflph$pbo$1(a)fred.mathworks.com>...
> > Is there a syntax that lets me put the transition text over multiple lines, on a transition with many conditions, having it all on one line is quite cumbersome/long?
>
> If I understand your problem correctly,
> [Condition1 ...
> Condition 2 ...
> COndition 3 ]
> Is this what your are trying to do?
>
> Just end your condition with a '...'

Perfect, this is exactly what I was looking for, when I googled it, I kept seeing responses that Stateflow didn't support a way to break up conditions onto multiple lines. Thanks!