📄 operations.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -