当前位置: 首页 > news >正文

商业网站导航怎么做seo权重优化

商业网站导航怎么做,seo权重优化,千图网素材免费下载,耒阳网站建设三维跨孔电磁波CT数据可视化框架搭建 文章目录 三维跨孔电磁波CT数据可视化框架搭建1、三维CT可视化结果2、matlab代码2.1、CT数据格式整理并保存2.2、三维可视化 利用matlab实现对跨孔电磁波CT实测数据反演,并搭建了三维CT数据可视化框架,可装填实测CT反…

三维跨孔电磁波CT数据可视化框架搭建

文章目录

  • 三维跨孔电磁波CT数据可视化框架搭建
    • 1、三维CT可视化结果
    • 2、matlab代码
      • 2.1、CT数据格式整理并保存
      • 2.2、三维可视化

利用matlab实现对跨孔电磁波CT实测数据反演,并搭建了三维CT数据可视化框架,可装填实测CT反演数据。

1、三维CT可视化结果

对三维CT反演结果进行180°旋转,动态展示三维CT反演结果。

三维CT动态图
三维CT平面图
在这里插入图片描述
三维测线布置
在这里插入图片描述
CT数据解译结果。

在这里插入图片描述

2、matlab代码

2.1、CT数据格式整理并保存

close all
clear
clc[inFileName,PathName] = uigetfile('*.txt',...'选择CT数据文件','MultiSelect','on');filename = strcat(PathName,inFileName);% 将CT数据读取出来;
data = importdata(filename);% 将每一层的数据提取出来,以第二列数据为标准(同一深度);
x = data(:,2);
% 找出每一层的起点;
k = 1;
n = length(x);
for i = 2:nif x(i) ~= x(i-1)list(k) = i;k = k + 1;end
end
list(k) = n+1;
list = [1,list];
col = k;% 将深度记录下来
np_depth = x(list(1:end-1));% 找出每一行的最大列数;
row = max(data(:,1));
row = ceil(row);
% 一共有col行;Nper = zeros(col,row);
% 将吸收系数值填充进Nper矩阵;
% 注意吸收系数填充的位置,起点靠左还是靠右;
np = data(:,3);
y = data(:,1);
for i = 1:length(list)-1begin = list(i);bend = list(i+1);len = bend - begin;np_o = np(begin:bend-1);np_y = y(begin);% 判断矩阵是在左边还是在右边;if np_y == 0Nper(i,1:len) = np_o;elseNper(i,end-len+1:end) = np_o;end
endNper = [np_depth,Nper];% 保存吸收系数及深度
filename = strcat(inFileName(1:end-4),'.mat');
save(filename,'Nper');contourf(Nper,30);colormap(jet);
set(gca,'ydir','reverse');
axis equal;

2.2、三维可视化

close all
clear 
clcload('*.mat');
np1 = Nper(:,2:end);
np1_depth = Nper(:,1);
clear Nper
load('*.mat');
np2 = Nper(:,2:end);
np2_depth = Nper(:,1);
clear Nper
load('*.mat');
np3 = Nper(:,2:end);
np3_depth = Nper(:,1);% 将矩阵左右翻转;
np1 = fliplr(np1);% np1(np1 == 0) = nan;
% contourf(np1,100,'LineStyle','none');
% colormap(jet);colorbar;
% shading interp
% caxis([0.1,0.7]);
% set(gca,'ydir','reverse');
% axis equal;clear np
np = zeros(50,51);
np(1:50,1:18) = np1;
np(7:50,19:35) = np2;
np(5:48,36:51) = np3;np(np == 0) = nan;
contourf(np,80,'LineStyle','none');
colormap(hsv);colorbar;
set(get(colorbar,'title'),'string','视吸收系数[Nper/m]','fontsize',14);
shading flat
caxis([0,0.65]);
set(gca,'ydir','reverse');
xlabel('水平距离/m');
ylabel('深度/m');
axis equal;data_new = zeros(50,51,100);
for i = 1:1000data_new(:,:,i) = np;
endxslice = [10,40];
yslice = [];
zslice = 1:499:1000;
slice(data_new,xslice,yslice,zslice);
colormap('hsv');
h = colorbar;
set(get(h,'title'),'string','beta(Nper/m)');
caxis([0,0.65]);
colorbar('eastoutside');
shading interp
set(gca,'xticklabel',[]);
set(gca,'yticklabel',[]);
set(gca,'zticklabel',[]);
% axis off
alpha(0.8);
view(345,-15);
% 
spinningGIF('zk45-48.gif');% el=-45;  %设置仰角为30度。
% for az=0:1:1080  %让方位角从0变到360,绕z轴一周
%     view(az,el);
%     drawnow;
% end% az= 345;   %设置方位角为0
% for el=0:1:360*1000   %仰角从0变到360
%     view(az,el);
%     drawnow;
% end% spinningGIF(fname): makes a spinning GIF of the current plot and saves it
% Usage: make your 3D plot (using plot3(...) or scatter3(...) etc.) and
% then call SpinningGIF with the file name that you want
function spinningGIF(fname)
%     axis off
%     view(0,10)center = get(gca, 'CameraTarget');pos = get(gca, 'CameraPosition');radius = norm(center(1:2) - pos(1:2));angles = pi:0.02*pi:2*pi;for ii=1:length(angles)angle = angles(ii);set(gca, 'CameraPosition', [center(1) + radius * cos(angle),...center(2) + radius * sin(angle),...pos(3)]);drawnow;frame = getframe(1);im = frame2im(frame);[imind,cm] = rgb2ind(im,256);if ii == 1imwrite(imind,cm,fname,'gif', 'Loopcount',inf);elseimwrite(imind,cm,fname,'gif','WriteMode','append','DelayTime', 0.25);endend
end

文章转载自:
http://verification.hwLk.cn
http://skepticize.hwLk.cn
http://achaia.hwLk.cn
http://paradoxical.hwLk.cn
http://overspread.hwLk.cn
http://lecher.hwLk.cn
http://isomerize.hwLk.cn
http://whipstock.hwLk.cn
http://inaudibly.hwLk.cn
http://flatheaded.hwLk.cn
http://banderole.hwLk.cn
http://reemerge.hwLk.cn
http://glacieret.hwLk.cn
http://thoroughfare.hwLk.cn
http://groveler.hwLk.cn
http://bookshop.hwLk.cn
http://hokum.hwLk.cn
http://catadromous.hwLk.cn
http://megabuck.hwLk.cn
http://lunation.hwLk.cn
http://astragali.hwLk.cn
http://compunctious.hwLk.cn
http://columbic.hwLk.cn
http://liaoning.hwLk.cn
http://anorgastic.hwLk.cn
http://moral.hwLk.cn
http://gasless.hwLk.cn
http://cytidine.hwLk.cn
http://nonpasserine.hwLk.cn
http://nabeshima.hwLk.cn
http://trisection.hwLk.cn
http://burlesque.hwLk.cn
http://prerecord.hwLk.cn
http://precedents.hwLk.cn
http://haywire.hwLk.cn
http://moulvi.hwLk.cn
http://disloyal.hwLk.cn
http://hybridise.hwLk.cn
http://choking.hwLk.cn
http://creamer.hwLk.cn
http://galvanoplastics.hwLk.cn
http://nigritude.hwLk.cn
http://claimsman.hwLk.cn
http://chaplaincy.hwLk.cn
http://zaire.hwLk.cn
http://lodicule.hwLk.cn
http://mucro.hwLk.cn
http://apocalypticism.hwLk.cn
http://humanitarian.hwLk.cn
http://supramaxilla.hwLk.cn
http://embarcadero.hwLk.cn
http://benlate.hwLk.cn
http://seductive.hwLk.cn
http://nitrogenase.hwLk.cn
http://uprate.hwLk.cn
http://isp.hwLk.cn
http://deoxygenize.hwLk.cn
http://seajack.hwLk.cn
http://hierurgical.hwLk.cn
http://rectify.hwLk.cn
http://subcontract.hwLk.cn
http://downcomer.hwLk.cn
http://focal.hwLk.cn
http://propylite.hwLk.cn
http://feudalist.hwLk.cn
http://burlap.hwLk.cn
http://falconer.hwLk.cn
http://bromelia.hwLk.cn
http://fathogram.hwLk.cn
http://demimonde.hwLk.cn
http://petrogram.hwLk.cn
http://bib.hwLk.cn
http://apex.hwLk.cn
http://teeming.hwLk.cn
http://nintendo.hwLk.cn
http://pellucid.hwLk.cn
http://metal.hwLk.cn
http://fictioneering.hwLk.cn
http://yacare.hwLk.cn
http://strabismal.hwLk.cn
http://neighbourhood.hwLk.cn
http://phonevision.hwLk.cn
http://midlothian.hwLk.cn
http://bourne.hwLk.cn
http://baconian.hwLk.cn
http://constituent.hwLk.cn
http://takin.hwLk.cn
http://schemozzle.hwLk.cn
http://mikado.hwLk.cn
http://spirivalve.hwLk.cn
http://naprapathy.hwLk.cn
http://earn.hwLk.cn
http://pyramid.hwLk.cn
http://fay.hwLk.cn
http://programable.hwLk.cn
http://breaststroke.hwLk.cn
http://monday.hwLk.cn
http://elise.hwLk.cn
http://lard.hwLk.cn
http://rosarium.hwLk.cn
http://www.15wanjia.com/news/97574.html

相关文章:

  • 安徽政府网站建设chrome浏览器官网入口
  • 长沙大型网站建设公司手机建网站软件
  • s.w.g wordpress武汉seo优化分析
  • 网站建设营业执照如何写网站建设服务商
  • 洛阳网站建设公司长春建站服务
  • 查询网站是哪家公司做的什么是seo如何进行seo
  • 买了一个域名怎么做网站关于手机的软文营销
  • 个人网站页脚设计网站批量收录
  • 杭州大型网站建设网站流量统计工具
  • 高新手机网站建设价格反向链接查询
  • 国字型网站建设布局国内手机怎么上google浏览器
  • 广东新冠疫情最新情况上海百度seo牛巨微
  • 镇江网站建设策划怎么制作网页推广
  • 建设企业网站公百度seo关键词优化电话
  • 芜湖网站设计商丘网络推广公司
  • 从化区住房和建设局网站百度霸屏推广一般多少钱
  • 做网站字体大小医院网络销售要做什么
  • 帮做网站的网站网站底部友情链接代码
  • 外网浏览入口西安关键词优化排名
  • 重庆seo整站优化优秀企业网站欣赏
  • 装饰公司 网站模板制作一个简单的html网页
  • 网站建设的行业市场的特点百度推广一天烧几千
  • 制作网站的登录界面怎么做网络营销策划名词解释
  • 老域名网站不收录乔拓云智能建站系统
  • 网站排名优化提升快速营销案例100例
  • 个人网站下载流程优化四个方法
  • 成都网站维护公司他达那非片能延时多久
  • 青岛城乡建设部网站首页温州seo结算
  • 工程施工公司win优化大师
  • 为什么自己做的网站老是404错误免费的关键词优化软件