example73_figure.m
来自「是一个用MATLAB编的一个系统」· M 代码 · 共 23 行
M
23 行
%exmple73_figure
%==============
% clf reset;
clc
% figrect=get(gcf,'Position');
% set(gcf,'Position',[figrect(1:2) 300 300]);
% clf reset
echo off
P=[-3 -2 -2 0 0 0 0 +2 +2 +3;
0 +1 -1 +2 +1 -1 -2 +1 -1 0];
C=[1 1 1 2 2 2 2 1 1 1];
T=ind2vec(C);
clc
% figure(1)
figure('name','输入矢量图示','numbertitle','off');
colormap(hsv)
plotvec(P,C)
alabel('p(1)','p(2)','Input Vectors')
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?