📄 range.m
字号:
function y=range(V)
%RANGE The range is the difference between the maximum and minimum values.
% y = RANGE(V) calculates the ranges of the vector function
% components V.x, V.y and V.z.
% Copyright (c) 2001-04-17, B. Rasmus Anthin.
y=max(V)-min(V);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -