range.m
来自「matlab 多参数积分工具箱 multivariable calculus」· M 代码 · 共 7 行
M
7 行
function y=range(S)
%RANGE The range is the difference between the maximum and minimum values.
% y = RANGE(S) calculates the range of the scalar function S.
% Copyright (c) 2001-04-17, B. Rasmus Anthin.
y=max(S)-min(S);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?