How do you write this "| "symbol in MATLAB?

조회 수: 16 (최근 30일)
Matthew Worker
Matthew Worker 2021년 11월 28일
편집: John Kelly 2021년 12월 8일
How i would write that symbol in MATLAB?
i left it out and even tried'/'
but i keep getting warnings within the script
thank u!
will attach my code too
function res=disttrans(image,mask)
backmask=rot90(rot90(mask)); % rotating forward mask by 180 degree to make backward mask
[mr,mc] =size(mask);
if ((floor(mr/2)==ceil(mr/2))(floor(mc/2)==ceil(mc/2)))
then error('The mask must have odd dimensions.')
end
[r,c]=size (image);
nr=(mr-1)/2;
nc=(mc-1)/2;
image2=zeros(r+mr-1, C+mc-1);
image2(nr+1:r+nr, nc+1:c+nc)=image;
image2(image2==0) =Inf;
image2(image2==1) =0;
for i=nr+1:r+nr
for j=nc+1 : c+nc
image2(i,j)=min (min(image2(i-nr:i+nr,j-nc:j+nc)+mask));
end
end
for i=r+nr:-1:nr+1
for j=c+nc:-1:nc+1
image2(i,j)=min(min(image2(i-nr:i+nr,j-nc:j+nc)+backmask));
end
end
res=image2(nr+1:r+nr,nc+1:c+nc);

채택된 답변

DGM
DGM 2021년 11월 28일
The expression
((floor(mr/2)==ceil(mr/2)) | (floor(mc/2)==ceil(mc/2)))
conceptually says
((number of rows is even) OR (number of columns is even))
Which is a peculiar way to do the test, but it should work fine.
That said, there are two OR operators:
| is a general elementwise logical OR that can be used on arrays
|| is the logical OR with short-circuit functionality. This is potentially more efficient, but only works with scalar logical arguments
In this case, you could use either, but using || would be preferred.
If MLINT was putting a squiggle under the lone |, that was probably why. It's not an error. It's just a hint.

추가 답변 (1개)

Steven Lord
Steven Lord 2021년 11월 28일
If for whatever reason you cannot type the | character (which on my QWERTY keyboard is Shift plus the key to the far right of the second row of keys) you could call the function form of that operator using the or function.
x = 2;
if (x < 1) | (x > 3)
disp('Out of bounds')
else
disp('In bounds')
end
In bounds
if or(x < 1, x > 3)
disp('Out of bounds')
else
disp('In bounds')
end
In bounds

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by