📄 pickgeom.m,v
字号:
head 3.0;access;symbols;locks; strict;comment @// @;3.0date 2000.06.13.19.18.03; author gilles; state Exp;branches;next ;desc@Release 3@3.0log@*** empty log message ***@text@function [pts]=pickgeom(datain,npts,dist)%finding plotting limits of source receiver geometry +50 meters on each sideminx=min(min([datain.th{1}(31,:) datain.th{1}(37,:)]))-dist;maxx=max(max([datain.th{1}(31,:) datain.th{1}(37,:)]))+dist;miny=min(min([datain.th{1}(29,:) datain.th{1}(35,:)]))-dist;maxy=max(max([datain.th{1}(29,:) datain.th{1}(35,:)]))+dist;%plotting source informationplot(datain.th{1}(31,:),datain.th{1}(29,:),'ob');hold on%plotting receiver informationplot(datain.th{1}(37,:),datain.th{1}(35,:),'*r');axis([minx maxx miny maxy]);axis('equal');%mouse input for along S-R azimuth bin limits[px,py]=ginput(npts);pts=[px py];plot(px,py,'+k');@
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -