亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

Grid

  • MSADODC.OCX和MSDATGRD.OCX

    Visual Studio 2010中插入ADO Data Control控件和ADO Data Grid控件,將MSADODC.OCX和MSDATGRD.OCX放在C:\Windows\System32目錄下,然后在VS中注冊

    標簽: OCX MSDATGRD MSADODC

    上傳時間: 2017-07-13

    上傳用戶:sin216

  • matlab 做地形

    matlab 做模式地形,處理生成Grid網格

    標簽: matlab 地形

    上傳時間: 2018-01-05

    上傳用戶:tingchong

  • 重力異常正演MATLAB程序

    %球體 close all; G=6.67e-11; R=2;%球體半徑 p=4.0;%密度 D=10.0;%深度 M=(4/3)*pi*R^3*p;%質量 x=-20:1:20; g=G*M*D./((x.^2+D^2).^(3/2)); Vxz=-3*G*M*D.*x./((x.^2+D^2).^(5/2)); Vzz=G*M.*(2*D^2-x.^2)./((x.^2+D^2).^(5/2)); Vzzz=3*G*M.*(2*D^2-3.*x.^2)./((x.^2+D^2).^(7/2)); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離(m)'); ylabel('重力異常值'); title('球體重力異常Δg'); Grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vxz'); Grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); Grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzzz'); Grid on %% %水平圓柱體 close all G=6.67e-11; p=10.0;%線密度 D=100.0;%深度 x=-200:1:200; g=G*2*p*D./(x.^2+D^2); Vxz=4*G*p*D.*x./(x.^2+D^2).^2; Vzz=2*G*p.*(D^2-x.^2)./(x.^2+D^2).^2; Vzzz=4*G*p.*(D^2-3.*x.^2)./((x.^2+D^2).^3); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離(m)'); ylabel('重力異常值'); title('水平圓柱體重力異常Δg'); Grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vxz'); Grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); Grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzzz'); Grid on %% %垂直臺階 G=6.67e-11; p=4.0;%密度 h1=50.0;%下層深度 h2=40.0;%上層深度 x=-100:1:100; g=G*p.*(pi*(h1-h2)+x.*log((x.^2+h1^2)./(x.^2+h2^2))+2*h1.*atan(x./h1)-2*h2.*atan(x./h2)); Vxz=G*p.*log((h1^2+x.^2)./(h2^2+x.^2)); Vzz=2*G*p.*atan((x.*(h1-h2))./(x.^2+h1*h2)); Vzzz=2*G*p.*x*(h1^2-h2^2)./((h1^2+x.^2).*(x.^2+h2^2)); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離(m)'); ylabel('重力異常值'); title('垂直臺階重力異常Δg'); Grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vxz'); Grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); Grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzzz'); Grid on %% %傾斜臺階 G=6.67e-11; p=4.0;%密度 h1=50.0;%下層深度 h2=40.0;%上層深度 a=pi/6;%傾斜角度 x=-500:1:500; g=G*p.*(pi*(h1-h2)+2*h1.*atan((x+h1*cot(a))./h1)-2*h2.*atan((x+h2*cot(a))./h1)+x.*sin(a)^2.*log(((h1+x.*sin(a).*cos(a)).^2+x.^2.*sin(a)^4)./((h2+x.*(sin(a)*cos(a))).^2+x.^2.*sin(a)^4))); Vxz=G*p.*(sin(a)^2.*log(((h1*cot(a)+x).^2+h1^2)./((h2*cot(a)+x).^2+h2^2))-2*sin(2*a).*(atan((h1/sin(a)+x.*cos(a))./(x.*sin(a)))-atan((h2/sin(a)+x.^cos(a))./(sin(a).*x)))); Vzz=G*p.*(0.5*sin(2*a)^2.*log(((h1*cot(a)+x).^2+h1^2)./((h2*cot(a)+x).^2+h2^2))+2*sin(a)^2.*(atan((h1/sin(a)+x.*cos(a))./(x.*sin(a)))-atan((h2/sin(a)+x.*cos(a))./(x.*sin(a))))); Vzzz=2*G*p*sin(a)^2.*((x+2*h2*cot(a))./((h2*cot(a)+x).^2+h2^2)-(x+2*h1*cot(a))./((h1*cot(a)+x).^2+h1^2)); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離(m)'); ylabel('重力異常值'); title('傾斜臺階重力異常Δg'); Grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vxz'); Grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); Grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzzz'); Grid on %% %鉛錘柱體 G=6.67e-11; p=4.0;%密度 h1=50.0;%下層深度 h2=40.0;%上層深度 a=3;%半徑 x=-500:1:500; g=G*p.*((x+a).*log(((x+a).^2+h1^2)./((x+a).^2+h2^2))-(x-a).*log(((x-a).^2+h1^2)./((x-a).^2+h2^2))+2*h1.*(atan((x+a)./h1)-atan((x-a)./h1))-2*h2.*(atan((x+a)./h2)-atan((x-a)./h2))); Vxz=G*p.*log((((x+a).^2+h1^2).*((x-a).^2+h2^2))./(((x+a).^2+h2^2).*((x-a).^2+h1^2))); Vzz=2*G*p.*(atan(h1./(x+a))-atan(h2./(x+a))-atan(h1./(x-a))+atan(h2./(x-a))); Vzzz=2*G*p.*((x+a)./((x+a).^2+h2^2)-(x+a)./((x+a).^2+h1^2)-(x-a)./((x-a).^2+h2^2)+(x-a)./((x-a).^2+h1^2)); subplot(2,2,1) plot(x,g,'k-'); xlabel('水平距離/m') ylabel('重力異常值') title('鉛垂柱體重力異常') Grid on subplot(2,2,2) plot(x,Vxz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vxz'); Grid on subplot(2,2,3) plot(x,Vzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzz'); Grid on subplot(2,2,4); plot(x,Vzzz); xlabel('水平距離(m)'); ylabel('導數值'); title('Vzzz'); Grid on

    標簽: MATLAB 重力 程序

    上傳時間: 2019-05-10

    上傳用戶:xiajiang

  • R-SLAM--Resilient localization and mapping

    Accurate pose estimation plays an important role in solution of simultaneous localization and mapping (SLAM) problem, required for many robotic applications. This paper presents a new approach called R-SLAM, primarily to overcome systematic and non-systematic odometry errors which are generally caused by uneven floors, unexpected objects on the floor or wheel-slippage due to skidding or fast turns.The hybrid approach presented here combines the strengths of feature based and Grid based methods to produce globally consistent high resolution maps within various types of environments.

    標簽: localization environments challenging Resilient mapping R-SLAM and in

    上傳時間: 2019-09-15

    上傳用戶:zhudx2007

  • Data+Processing+in+Smart+Cities

    Smart Grids provide many benefits for society. Reliability, observability across the energy distribution system and the exchange of information between devices are just some of the features that make Smart Grids so attractive. One of the main products of a Smart Grid is to data. The amount of data available nowadays increases fast and carries several kinds of information. Smart metres allow engineers to perform multiple measurements and analyse such data. For example, information about consumption, power quality and digital protection, among others, can be extracted. However, the main challenge in extracting information from data arises from the data quality. In fact, many sectors of the society can benefit from such data. Hence, this information needs to be properly stored and readily available. In this chapter, we will address the main concepts involving Technology Information, Data Mining, Big Data and clustering for deploying information on Smart Grids.

    標簽: Processing Cities Smart Data in

    上傳時間: 2020-05-23

    上傳用戶:shancjb

  • Data+Processing+in+Smart+Cities

    Smart Grids provide many benefits for society. Reliability, observability across the energy distribution system and the exchange of information between devices are just some of the features that make Smart Grids so attractive. One of the main products of a Smart Grid is to data. The amount of data available nowadays increases fast and carries several kinds of information. Smart metres allow engineers to perform multiple measurements and analyse such data. For example, information about consumption, power quality and digital protection, among others, can be extracted. However, the main challenge in extracting information from data arises from the data quality. In fact, many sectors of the society can benefit from such data. Hence, this information needs to be properly stored and readily available. In this chapter, we will address the main concepts involving Technology Information, Data Mining, Big Data and clustering for deploying information on Smart Grids.

    標簽: Processing Cities Smart Data

    上傳時間: 2020-05-25

    上傳用戶:shancjb

  • HOMEPLUG+AV+AND IEEE 1901

    Broadband powerline communication systems are continuing to gain significant market adoption worldwide for applications ranging from IPTV delivery to the Smart Grid. The suite of standards developed by the HomePlug Powerline Alliance plays an important role in the widespread deployment of broadband PLC. To date, more than 100 million HomePlug modems are deployed and these numbers continue to rise.

    標簽: HOMEPLUG 1901 IEEE AV

    上傳時間: 2020-05-26

    上傳用戶:shancjb

  • HOMEPLUG+AV+AND

    Broadband powerline communication systems are continuing to gain significant market adoption worldwide for applications ranging from IPTV delivery to the Smart Grid. The suite of standards developed by the HomePlug Powerline Alliance plays an important role in the widespread deployment of broadband PLC. To date, more than 100 million HomePlug modems are deployed and these numbers continue to rise.

    標簽: HOMEPLUG AND AV

    上傳時間: 2020-06-06

    上傳用戶:shancjb

  • Cognitive+Radio+Networks

    Resource allocation is an important issue in wireless communication networks. In recent decades, cognitive radio technology and cognitive radio-based networks have obtained more and more attention and have been well studied to improve spectrum utilization and to overcomethe problem of spectrum scarcity in future wireless com- munication systems. Many new challenges on resource allocation appear in cogni- tive radio-based networks. In this book, we focus on effective solutions to resource allocation in several important cognitive radio-based networks, including a cogni- tive radio-basedopportunisticspectrum access network, a cognitiveradio-basedcen- tralized network, a cognitive radio-based cellular network, a cognitive radio-based high-speed vehicle network, and a cognitive radio-based smart Grid.

    標簽: Cognitive Networks Radio

    上傳時間: 2020-06-07

    上傳用戶:shancjb

  • Communication+Networks

    n its Framework and Roadmap for Smart Grid Interoperability Standards, the US National Institute of Standards and Technology declares that a twenty-first-century clean energy economy demands a twenty-first-century electric Grid. 1 The start of the twenty-first century marked the acceleration of the Smart Grid evolution. The goals of this evolution are broad, including the promotion of widespread and distributed deployment of renewable energy sources, increased energy efficiency, peak power reduction, automated demand response, improved reliability, lower energy delivery costs, and consumer participation in energy management.

    標簽: Communication Networks

    上傳時間: 2020-06-07

    上傳用戶:shancjb

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧美视频在线| 美女精品一区| 欧美三级黄美女| 久久精品国产一区二区电影 | 亚洲一区尤物| aaa亚洲精品一二三区| 亚洲麻豆国产自偷在线| 91久久精品国产91性色tv| 国产日产欧美一区| 欧美精品一区二区在线播放| 麻豆亚洲精品| 欧美国产视频日韩| 欧美日韩国产bt| 欧美精品午夜视频| 欧美日本在线| 欧美日韩成人一区| 欧美日韩黄色一区二区| 欧美成年人视频网站欧美| 欧美高清在线视频观看不卡| 欧美激情片在线观看| 欧美精品在线一区二区| 欧美日韩第一页| 欧美日韩一区二区三区在线视频| 欧美视频一区二区| 国产精品自拍三区| 伊人成年综合电影网| 在线观看亚洲视频啊啊啊啊| 亚洲黄页一区| 日韩午夜中文字幕| 亚洲男同1069视频| 久久久久久9| 欧美华人在线视频| 欧美日韩性视频在线| 国产精品v欧美精品v日本精品动漫| 欧美性色视频在线| 欧美午夜视频在线| 国产精品系列在线播放| 玉米视频成人免费看| 亚洲美女中出| 亚久久调教视频| 美国成人直播| 国产精品yjizz| 狠狠色综合色区| 一区二区三区高清在线观看| 欧美中文字幕精品| 免费在线播放第一区高清av| 欧美三级乱码| 亚洲成人在线| 亚洲欧美www| 免费在线亚洲| 国产精品影音先锋| 亚洲日本黄色| 欧美一站二站| 欧美一级久久| 你懂的视频一区二区| 国产精品劲爆视频| 亚洲国产精品福利| 欧美中在线观看| 欧美三级电影精品| 亚洲日本成人女熟在线观看| 久久精品免费| 精品51国产黑色丝袜高跟鞋| 国产日产精品一区二区三区四区的观看方式| 欧美日韩国产区| 国产精品久久久久久久久久久久| 国产一级一区二区| 亚洲精品之草原avav久久| 亚洲与欧洲av电影| 老妇喷水一区二区三区| 国产精品视频99| 日韩亚洲在线| 美女福利精品视频| 国产自产女人91一区在线观看| 在线亚洲一区二区| 欧美好骚综合网| 国模精品娜娜一二三区| 亚洲欧美制服中文字幕| 欧美日韩国语| 亚洲精品国偷自产在线99热| 欧美激情精品久久久久久黑人| 麻豆精品在线观看| 欧美特黄视频| 亚洲第一精品福利| 久久久蜜桃一区二区人| 国产三级精品在线不卡| 亚洲一区www| 欧美视频日韩视频在线观看| 亚洲精品乱码| 欧美精品久久久久久久久久| 在线精品国产欧美| 另类激情亚洲| 欧美啪啪一区| 国产日韩欧美三级| 亚洲裸体俱乐部裸体舞表演av| 模特精品在线| 亚洲国产三级| 欧美精品18| 一区二区三区久久| 欧美视频专区一二在线观看| 一本色道久久99精品综合| 欧美精品在线免费| 在线亚洲电影| 欧美香蕉大胸在线视频观看| 在线一区亚洲| 国产欧美日韩亚洲一区二区三区| 欧美自拍丝袜亚洲| 国内精品久久久| 久久最新视频| 亚洲久久一区二区| 国产精品国产| 久久久久综合一区二区三区| 亚洲国产精品一区二区www在线| 欧美国产视频在线观看| 中日韩美女免费视频网站在线观看| 国产精品高清在线观看| 欧美一区二区三区在线看 | 欧美va天堂| 韩国一区二区三区美女美女秀| 久久久噜噜噜久噜久久| 中文在线资源观看网站视频免费不卡| 久久久久久久999| 欧美一级在线亚洲天堂| 国产精品一区二区三区成人| 亚洲一区在线免费观看| 国产精品一区视频| 欧美在线视频全部完| 国产综合色在线| 久久精品视频在线看| 久久久午夜视频| 亚洲国产第一| 欧美激情亚洲激情| 中文一区字幕| 国产欧美精品日韩区二区麻豆天美| 亚洲伊人第一页| 国产欧美日韩综合精品二区| 久久国产精品一区二区三区| 黄色精品一二区| 欧美日韩国产探花| 欧美中文在线视频| 最新日韩欧美| 国产精品户外野外| 亚洲美女精品成人在线视频| 裸体歌舞表演一区二区| 亚洲国产天堂久久综合网| 国产亚洲成人一区| 久久青青草原一区二区| 国产精品综合不卡av| 欧美国产先锋| 亚洲精品日韩欧美| 猛干欧美女孩| 亚洲经典在线| 欧美精品18+| 日韩午夜免费| 欧美a级一区| 亚洲美女尤物影院| 国产色视频一区| 在线播放精品| 欧美激情视频一区二区三区免费| 性欧美超级视频| 韩国女主播一区二区三区| 欧美日韩播放| 久久国产精品亚洲va麻豆| 亚洲精品美女久久久久| 国产精品都在这里| 欧美成人在线影院| 久久人91精品久久久久久不卡| 亚洲私人影院在线观看| 欧美亚洲尤物久久| 国产欧美视频一区二区三区| 久久久精品性| 国产精品99久久久久久www| 国产一区二区三区四区三区四| 欧美国产丝袜视频| 久久精品人人做人人综合| 99re6热只有精品免费观看| 国产亚洲欧洲一区高清在线观看 | 欧美日韩第一页| 国产私拍一区| 欧美日韩一区二区三区在线 | aa级大片欧美三级| 国产欧美一区二区色老头| 欧美国产日韩一区| 欧美一二三区精品| 这里只有精品丝袜| 国产亚洲欧美日韩一区二区| 欧美日韩国内自拍| 欧美精品三级日韩久久| 国产欧美一区二区精品忘忧草| 欧美大片一区| 久久久视频精品| 亚洲免费综合| 一个人看的www久久| 亚洲精品久久久久久久久久久久久| 国产精品日本一区二区| 欧美一区二区久久久| 一区二区三区精品在线| 这里只有精品视频在线| 欧美日韩国产精品| 亚洲国产精品尤物yw在线观看| 久久久久久有精品国产|