operations.m

来自「matlab工具箱的应用演示程序,」· M 代码 · 共 11 行

M
11
字号
function [sum1, product1] = operations(a, b)

% This text is being displayed if you type help operations
% All comment lines before the first line of to-be-executed code will be
% displayed.

sum1 = a + b;

product1 = a * b;

return

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?