Fork me on GitHub
摘要: 1 function B = transformation(A) 2 sqrt2=1.414; 3 n=size(A,1); 4 B=zeros(n,2); 5 B(:,1)=A*[-sqrt2/4,1,0]'; 6 B(:,2)=A*[-sqrt2/4,0,1]'; 7 8 bmin=min(mi 阅读全文
posted @ 2020-03-01 17:28 小奔奔 阅读(293) 评论(0) 推荐(0) 编辑