How do you write this "| "symbol in MATLAB?
3 次查看(过去 30 天)
显示 更早的评论
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
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.
0 个评论
更多回答(1 个)
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
if or(x < 1, x > 3)
disp('Out of bounds')
else
disp('In bounds')
end
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!