📄 pcc2ccc.m
字号:
% PCC2CCC Convert the polar input into a complex number
%
% [pcc] = PCC2CCC (mag, ang) converts the polar input into a complex number
%
function [pcc] = pcc2ccc (mag, ang);
[x, y] = pol2cart (ang, mag);
pcc = x + j * y;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -