plotsquare.m
来自「Continuous Profile Models (CPM) Matlab T」· M 代码 · 共 22 行
M
22 行
% function plotSquare(corners,ls)% % plot out a square using the specified corners, and the given% line spec%% corners is 1x4 (or 4x1) and goes in the followin order% [yLow yHigh xLow xHigh], where y is on the vertical axisfunction plotSquare(corners,ls)error('incomplete');if ~(exist('ls')==1) ls = 'k-';end%tmpX = [plot(tmpX,tmpY,ls);hold on;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?