MATLAB: How to write multiple line for a condition in while or if

conditions in if and whileline continuation

I want to write a multiple line conditions to prevent a long line of condition
in C++ for example, I can do this
if a > b || \
... ||\
c > d{
//Something
}
Is there anyway to do something similar in matlab?

Best Answer

Yes, with '...'
if a>b ||...
c>d ||...
d>e
%something
end