📄 ge.m
字号:
function y=ge(A,B)
%>= Greater than or equal.
% V >= W does a comparison between the vector functions
% V and W and returns 1 if the relation is true and 0 if it is not.
% Copyright (c) 2001-04-17, B. Rasmus Anthin.
A=vector(A);
B=vector(B);
y=vec2sca(A,1)>=vec2sca(B,1) &...
vec2sca(A,2)>=vec2sca(B,2) &...
vec2sca(A,3)>=vec2sca(B,3);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -