What does '& ...' mean in Matlab?
이전 댓글 표시
I am new here and I don't know this expression: '& ...'. Can anyone explain?
I googled it but could not find an answer. Thanks.
Jennifer
채택된 답변
추가 답변 (1개)
Image Analyst
2015년 7월 9일
You didn't give the whole line but my guess is that someone is doing a logical operation and is using ... to continue the operation on the next line. For example instead of doing
results = thisVariable & thatVariable;
they're putting it on 2 lines like this:
results = thisVariable & ...
thatVariable;
That's just a guess, Jennifer, as to what it could be. I can't know for sure because you forgot to include the line(s) of code.
댓글 수: 2
JFz
2015년 7월 10일
Image Analyst
2015년 7월 10일
Jennifer, once an answer has been accepted, there is no way to unaccept it. However, you can still "Vote" for Answers to give the person credit (reputation points) for giving a correct answer. Thanks!
카테고리
도움말 센터 및 File Exchange에서 Particle & Nuclear Physics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!