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

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

sub<b>Plot</b>

  • Quectel Wireless Solutions BC20-TE-B 原理圖 V1.2

    BC20-TE-B NB-Iot 評(píng)估板評(píng)估板原廠原理圖V1.2。完整對(duì)應(yīng)實(shí)物裝置。

    標(biāo)簽: BC20 NB-Iot Quectel

    上傳時(shí)間: 2022-06-17

    上傳用戶:

  • ASR M08-B資料

    ASR M08-B設(shè)置軟件 V3.2  arduino 2560+ASRM08-B測試程序  arduino UNO+ASRM08-B測試程序語音控制臺(tái)燈電路圖及C51源碼(不帶校驗(yàn)碼) 繼電器模塊設(shè)置。   ASR M08-B是一款語音識(shí)別模塊。首先對(duì)模塊添加一些關(guān)鍵字,對(duì)著該模塊說出關(guān)鍵字,串口會(huì)返回三位的數(shù),如果是返回特定的三位數(shù)字,還會(huì)引起ASR M08-B的相關(guān)引腳電平的變化。【測試】①打開“ASR M08-B設(shè)置軟件 V3.2.exe”。②選擇“串口號(hào)”、“打開串口”、點(diǎn)選“十六進(jìn)制顯示”。③將USB轉(zhuǎn)串口模塊連接到語音識(shí)別模塊上。接線方法如下:語音模塊TXD --> USB模塊RXD語音模塊RXD --> USB模塊TXD語音模塊GND --> USB模塊GND語音模塊3V3 --> USB模塊3V3(此端為3.3V電源供電端。)④將模塊的開關(guān)撥到“A”端,最好再按一次上面的大按鈕(按一次即可,為了確保模塊工作在正確的模式)。⑤對(duì)著模塊說“開燈”、“關(guān)燈”模塊會(huì)返回“0B”、“0A”,表示正常(注意:0B對(duì)應(yīng)返回值010,0B對(duì)應(yīng)返回值010,返回是16進(jìn)制顯示的嘛,設(shè)置的時(shí)候是10進(jìn)制設(shè)置的)。

    標(biāo)簽: ASR M08-B

    上傳時(shí)間: 2022-07-06

    上傳用戶:aben

  • 電網(wǎng)現(xiàn)場作業(yè)管理系統(tǒng)的信息化設(shè)計(jì)

    為了改變目前電網(wǎng)現(xiàn)場作業(yè)管理的變電巡檢、變電檢修試驗(yàn)、輸電線路巡檢檢修等管理系統(tǒng)各自獨(dú)立運(yùn)行,信息不能共享,功能、效率受限,建設(shè)和維護(hù)成本高的現(xiàn)狀,提出了采用B/S+C/S構(gòu)架模式,將各現(xiàn)場作業(yè)管理模塊和生產(chǎn)MIS(管理系統(tǒng))集成為一體的現(xiàn)場作業(yè)管理系統(tǒng)的設(shè)計(jì)方案,做到各子系統(tǒng)和生產(chǎn)MIS軟硬資源共享,做到同一數(shù)據(jù)唯一入口、一處錄入多處使用。各子系統(tǒng)設(shè)備人員等基礎(chǔ)信息來源于生產(chǎn)管理系統(tǒng),各子系統(tǒng)又是生產(chǎn)管理系統(tǒng)的作業(yè)數(shù)據(jù)、缺陷信息的重要來源。經(jīng)過研究試用成功和推廣應(yīng)用,目前該系統(tǒng)已在江西電網(wǎng)220 kV及以上變電站全面應(yīng)用。 Abstract:  In order to improve the status that the substation field inspection system, substation equipments maintenance and testing system, power-line inspection and maintenance system are running independent with each other. They can?蒺t share the resource information which accordingly constrains their functions and efficiency, and their construction and maintenance costs are high. This paper introduces a field standardized work management system based on B/S+C/S mode, integrating all field work management systems based on MIS and share the equipments and employee?蒺s data of MIS,the field work data of the sub systems are the source information of MIS, by which the same single data resouce with one-time input can be utilized in multiple places. After the research and testing, this system is triumphantly using in all 220kV and above substations in Jiangxi grid.

    標(biāo)簽: 電網(wǎng) 信息化 管理系統(tǒng)

    上傳時(shí)間: 2013-11-15

    上傳用戶:han_zh

  • Visual Basic 6.0可以通過調(diào)用API函數(shù)格式化一個(gè)磁盤

    Visual Basic 6.0可以通過調(diào)用API函數(shù)格式化一個(gè)磁盤,無論是軟盤還是硬盤。 打開一個(gè)新的項(xiàng)目(工程1) ,如果你沒有更改過缺省模式,那么Visual Basic 6.0會(huì)自動(dòng)添加一個(gè)form1文件,在form1上添加一個(gè)命令控件,將下面的代碼拷入。 Option Explicit Private Declare Function SHFormatDrive Lib"shell32"( ByVal Hend AS Long,ByVal Drive AS Long,ByVal FormatID AS Long,ByVal Options AS Long) as Long Private Sub FormatDisk(intDrive as integer,blnQuickFormat as Boolean) dim lngReturn As Long if (blnQuickFormat) then lngReturn= SHFormatDrive(0,intDrive,0&,1&) else lngReturn= SHFormatDrive(0,intDrive,0&,0&) end if end Sub Private Sub Command1_Click() call FormatDisk(0,True) End Sub 運(yùn)行此程序。 注意FormatDisk函數(shù)的第一個(gè)變量很重要,他的值是0,1,2時(shí)代表格式化的分別是:A、B、C盤。

    標(biāo)簽: Visual Basic 6.0 API

    上傳時(shí)間: 2015-10-05

    上傳用戶:kytqcool

  • Generate 100 samples of a zero-mean white noise sequence with variance , by using a uniform random n

    Generate 100 samples of a zero-mean white noise sequence with variance , by using a uniform random number generator. a Compute the autocorrelation of for . b Compute the periodogram estimate and plot it. c Generate 10 different realizations of , and compute the corresponding sample autocorrelation sequences , and . Compute the average autocorrelation sequence as and the corresponding periodogram for . d Compute and plot the average periodogram using the Bartlett method. e Comment on the results in parts (a) through (d).

    標(biāo)簽: zero-mean Generate sequence variance

    上傳時(shí)間: 2016-03-04

    上傳用戶:朗朗乾坤

  • var matlab:variant //通過"變體"調(diào)用接口是比較低效的,但很方便 begin //變體這種結(jié)構(gòu)

    var matlab:variant //通過"變體"調(diào)用接口是比較低效的,但很方便 begin //變體這種結(jié)構(gòu),本是vb中的東西。 try //如果已有活動(dòng)的matlab.application對(duì)象,取其接口 matlab:=GetActiveOleObject( Matlab.Application ) except //這些個(gè)api所使用到的參數(shù),其實(shí)都可以在注冊(cè)表里搜索到. matlab:=CreateOleObject( Matlab.Application ) //否則自己創(chuàng)建之 matlab:=CreateOleObject( Matlab.Application.5 ) matlab.execute( a=[1 1/ 3 1/5] ) //matlab.application接口具有 matlab.execute( b=[3 1 1/3] ) //這種方法(接口),否則會(huì)出錯(cuò) matlab.execute( plot(a,b) );

    標(biāo)簽: variant matlab begin var

    上傳時(shí)間: 2013-12-18

    上傳用戶:dapangxie

  • 用雙向鏈表實(shí)現(xiàn)任意位數(shù)的正負(fù)整數(shù)或小數(shù)的加法、減法和乘法運(yùn)算以及對(duì)文件的相關(guān)操作。 文件說明: 給定的文件a*.txt為第一個(gè)數(shù)

    用雙向鏈表實(shí)現(xiàn)任意位數(shù)的正負(fù)整數(shù)或小數(shù)的加法、減法和乘法運(yùn)算以及對(duì)文件的相關(guān)操作。 文件說明: 給定的文件a*.txt為第一個(gè)數(shù),b*.txt為第二個(gè)數(shù),要求加法產(chǎn)生的結(jié)果存儲(chǔ)在add*.txt中,減法產(chǎn)生的結(jié)果存儲(chǔ)在sub*.txt中,乘法產(chǎn)生的結(jié)果存儲(chǔ)在mult*.txt中,*為對(duì)應(yīng)的一組數(shù)據(jù)。

    標(biāo)簽: txt 整數(shù) 加法

    上傳時(shí)間: 2014-01-09

    上傳用戶:zhouchang199

  • P3.20. Consider an analog signal xa (t) = sin (2πt), 0 ≤t≤ 1. It is sampled at Ts = 0.01, 0.05, and

    P3.20. Consider an analog signal xa (t) = sin (2πt), 0 ≤t≤ 1. It is sampled at Ts = 0.01, 0.05, and 0.1 sec intervals to obtain x(n). b) Reconstruct the analog signal ya (t) from the samples x(n) using the sinc interpolation (use ∆ t = 0.001) and determine the frequency in ya (t) from your plot. (Ignore the end effects.) C) Reconstruct the analog signal ya (t) from the samples x (n) using the cubic spline interpolation and determine the frequency in ya (t) from your plot. (Ignore the end effects.)

    標(biāo)簽: Consider sampled analog signal

    上傳時(shí)間: 2017-07-12

    上傳用戶:咔樂塢

  • 批處理感知器算法

    批處理感知器算法的代碼matlab w1=[1,0.1,1.1;1,6.8,7.1;1,-3.5,-4.1;1,2.0,2.7;1,4.1,2.8;1,3.1,5.0;1,-0.8,-1.3;     1,0.9,1.2;1,5.0,6.4;1,3.9,4.0]; w2=[1,7.1,4.2;1,-1.4,-4.3;1,4.5,0.0;1,6.3,1.6;1,4.2,1.9;1,1.4,-3.2;1,2.4,-4.0;     1,2.5,-6.1;1,8.4,3.7;1,4.1,-2.2]; w3=[1,-3.0,-2.9;1,0.5,8.7;1,2.9,2.1;1,-0.1,5.2;1,-4.0,2.2;1,-1.3,3.7;1,-3.4,6.2;     1,-4.1,3.4;1,-5.1,1.6;1,1.9,5.1]; figure; plot(w3(:,2),w3(:,3),'ro'); hold on; plot(w2(:,2),w2(:,3),'b+'); W=[w2;-w3];%增廣樣本規(guī)范化 a=[0,0,0]; k=0;%記錄步數(shù) n=1; y=zeros(size(W,2),1);%記錄錯(cuò)分的樣本 while any(y<=0)     k=k+1;     y=a*transpose(W);%記錄錯(cuò)分的樣本     a=a+sum(W(find(y<=0),:));%更新a     if k >= 250         break     end end if k<250     disp(['a為:',num2str(a)])      disp(['k為:',num2str(k)]) else      disp(['在250步以內(nèi)沒有收斂,終止']) end %判決面:x2=-a2*x1/a3-a1/a3 xmin=min(min(w1(:,2)),min(w2(:,2))); xmax=max(max(w1(:,2)),max(w2(:,2))); x=xmin-1:xmax+1;%(xmax-xmin): y=-a(2)*x/a(3)-a(1)/a(3); plot(x,y)

    標(biāo)簽: 批處理 算法matlab

    上傳時(shí)間: 2016-11-07

    上傳用戶:a1241314660

  • java實(shí)現(xiàn)大整數(shù)運(yùn)算

    在包 hugeinteger 中創(chuàng)建功能類 HugeInteger,該類用來存放和操作一個(gè)不超過 40 位的大整數(shù)。 (1) 定義一個(gè)構(gòu)造函數(shù),用來對(duì)大整數(shù)進(jìn)行初始化。參數(shù)為一個(gè)字符串。 (2) 定義 input 成員函數(shù),實(shí)現(xiàn)大整數(shù)的重新賦值。參數(shù)為一個(gè)字符串,無返回 值。 (3) 定義 output 成員函數(shù),將大整數(shù)輸出到屏幕上。無參數(shù)無返回值。 (4) 定義 add 成員函數(shù),實(shí)現(xiàn)兩個(gè)大整數(shù)的加法。參數(shù)為一個(gè) HugeInteger 對(duì) 象,無返回值,例如: HugeInteger A = new HugeInteger("12345"); HugeInteger B = new HugeInteger("1234"); A.add(B); 此時(shí),A 為 13579,B 為 1234。 (5) 定義 sub 成員函數(shù),實(shí)現(xiàn)兩個(gè)大整數(shù)的減法。參數(shù)和返回值同 add 函數(shù)。 (6) 定義若干大整數(shù)關(guān)系運(yùn)算的成員函數(shù),包括 isEqualTo(等于,=)、 isNotEqualTo(不等于,≠)、isGreaterThan(大于,>)、isLessThan(小 于,<)、isGreaterThanOrEqualTo(大于等于,≥)和 isLessThanOrEqualTo (小于等于,≤)。這些函數(shù)的參數(shù)為一個(gè) HugeInteger 對(duì)象,返回值為一個(gè) 布爾類型,表示關(guān)系運(yùn)算的結(jié)果,例如: HugeInteger A = new HugeInteger("12345"); HugeInteger B = new HugeInteger("1234"); 那么此時(shí) A.isGreaterThan(B)的結(jié)果應(yīng)當(dāng)為 True,表示 12345>1234。

    標(biāo)簽: java 整數(shù) 運(yùn)算

    上傳時(shí)間: 2019-06-01

    上傳用戶:idealist

主站蜘蛛池模板: 利津县| 布拖县| 麻江县| 平度市| 海原县| 加查县| 江山市| 凤阳县| 商丘市| 铁力市| 故城县| 六枝特区| 临沭县| 喀喇沁旗| 莱芜市| 通渭县| 昂仁县| 刚察县| 红河县| 石门县| 奉节县| 砀山县| 安图县| 庆城县| 策勒县| 南部县| 磐安县| 阜平县| 大竹县| 平远县| 托里县| 浙江省| 晋江市| 宁河县| 轮台县| 新化县| 安泽县| 北海市| 三明市| 甘孜| 凤山市|