用Matlab编写的棋盘格图像生成程序 Chessboard pattern generation program in matlab
clc;
clear all;
close all;
GridSize = 70; %length of the square
m =9; %number of row
n = 7; % number of col
margin = 10; %四边留白
I = ones(m*GridSize+2*margin,n*GridSize+2*margin)*
原创
2014-04-18 10:40:48 ·
6645 阅读 ·
0 评论