1) Write a function reverse(A) which takes a matrix A of arbitrary dimensions as input and returns a matrix B consisting of the columns of A in reverse order. Thus for example, if A = 1 2 3 then B = 3 2 1 4 5 6 6 5 4 7 8 9 9 8 7 Write a main program to call reverse(A) for the matrix A = magic(5). Print to the screen both A and reverse(A). 2) Write a program which accepts an input k from the keyboard, and which prints out the smallest fibonacci number that is at least as large as k. The program should also print out its position in the fibonacci sequence. Here is a sample of input and output: Enter k>0: 100 144 is the smallest fibonacci number greater than or equal to 100. It is the 12th fibonacci number.
標(biāo)簽: dimensions arbitrary function reverse
上傳時(shí)間: 2016-04-16
上傳用戶:waitingfy
Different methods for generating pyramid data structure have been analysed, these effects in image matching are compared, also a fast
標(biāo)簽: generating Different structure analysed
上傳時(shí)間: 2016-04-26
上傳用戶:LIKE
ATViewer is a component for Delphi/C++Builder, which allows to view files of various types. There is no edit possibility, just quick view - so it s useful to implement "View file" feature in your Delphi/C++Builder application. The following view modes are implemented: Text, Binary, Hex, Unicode: all files, of unlimited size. Plain file dump is shown. Used ATBinHex component: only visible part of file is loaded into memory. Modes are suitable for huge files and files of unknown type. RTF/UTF-8: RTF and UTF-8 encoded texts. File is shown using RichEdit control. Image: all general image formats: BMP JPG ICO GIF PNG... File is shown using ATImageBox component. Multimedia: all file types supported by MS Windows Media Player: AVI MPEG WMV MP3... File is shown using WMP ActiveX control. Internet: all file types supported by MS Internet Explorer: HTML XML DOC XLS... File is shown using MSIE ActiveX control. Plugins: all files supported by Total Commander Lister plugins.
標(biāo)簽: component ATViewer Builder various
上傳時(shí)間: 2013-12-24
上傳用戶:小鵬
WMTSA toolbox is an implemenation for MATLAB of the wavelet methods for time series analysis techniques presented in: Percival, D. B. and A. T. Walden (2000) Wavelet Methods for Time Series Analysis. Cambridge: Cambridge University Press.
標(biāo)簽: implemenation for analysis toolbox
上傳時(shí)間: 2014-01-15
上傳用戶:huangld
sfrmat is a Matlab function that provides a spatial frequency response* (SFR) from a digital image file containing a slanted-edge feature. The specific edge-gradient algorithm follows the intent of the standard ISO 12233, developed by Technical Committee ISI/TC 42, for resolution measurements for electronic still pictorial cameras.
標(biāo)簽: frequency function provides response
上傳時(shí)間: 2014-01-20
上傳用戶:qunquan
簡(jiǎn)易數(shù)字頻率計(jì)題解.( 1997年 B 題 ) 編寫與講解人:田良(東南大學(xué)無(wú)線電系,2003年3月12日) 一)任務(wù) 設(shè)計(jì)并制作一臺(tái)數(shù)字顯示的簡(jiǎn)易頻率計(jì)。 (二)要求 1.基本要求 (1)頻率測(cè)量 a.測(cè)量范圍 信號(hào):方波、正弦波 幅度:0.5V~5V[注] 頻率:1Hz~1MHz b.測(cè)試誤差≤0.1% (2)周期測(cè)量 a.測(cè)量范圍 信號(hào):方波、正弦波 幅度:0.5V~5V[注] 頻率:1Hz~1MHz b.測(cè)試誤差≤0.1% 3) 脈沖寬度測(cè)量 a.測(cè)量范圍 信號(hào):脈沖波 幅度:0.5V~5V[注] 脈沖寬度≥100μs b.測(cè)試誤差≤0.1% (4)顯示器 十進(jìn)制數(shù)字顯示,顯示刷新時(shí)間1~10秒 連續(xù)可調(diào),對(duì)上述三種測(cè)量功能分別采用不同顏色的 發(fā)光二極管指示。 (5)具有自校功能,時(shí)標(biāo)信號(hào)頻率為1MHz。 (6)自行設(shè)計(jì)并制作滿足本設(shè)計(jì)任務(wù)要求的穩(wěn)壓電源
標(biāo)簽: 1997 2003 數(shù)字頻率計(jì) 東南大學(xué)
上傳時(shí)間: 2013-12-26
上傳用戶:xg262122
對(duì)PL0原編譯器進(jìn)行了以下的擴(kuò)充:1.增加以下保留字else(elsesym), for(forsym),to(tosym),downto(downtosym),return(returnsym),[(lmparen),](rmparen) 2.增加了以下的運(yùn)算符:+=(eplus),-=(eminus),++(dplus),--(dminus) 取址運(yùn)算符&(radsym),指向運(yùn)算符@(padsym) 3.修改單詞:修改不等號(hào)#為<> 4.擴(kuò)充語(yǔ)句:(1)增加了else子句 (2)增加了for語(yǔ)句 5.增加運(yùn)算:(1).++運(yùn)算 (2).--運(yùn)算;(3).+=運(yùn)算 (4).-=運(yùn)算;(5).&取址運(yùn)算; (6).@指向運(yùn)算; 6.增加類型:(1).增加多維數(shù)組a[i1][i2][i3]……[i(n-1)][i(n-2)][in] (2).增加指針類型(任何變量都能存放指針,但不支持指針的指針,如b:=@@a應(yīng)該改寫為c:=@a,b:=@c) 7.將過(guò)程procedure擴(kuò)展為函數(shù):(1).允許定義過(guò)程時(shí)在其后加參數(shù)(var a, var b,……..,var n) (2)允許通過(guò)指針向函數(shù)形式參數(shù)傳地址;(3)允許返回值;可以用 a:=p(a,b,c….,n) 返回
標(biāo)簽: downtosym returnsym elsesym downto
上傳時(shí)間: 2016-07-02
上傳用戶:saharawalker
Abstract—Wireless networks in combination with image sensors open up a multitude of previously unthinkable sensing applications. Capable tools and testbeds for these wireless image sensor networks can greatly accelerate development of complex, yet efficient algorithms that meet application requirements. In this paper, we introduce WiSNAP, a Matlab-based application development platform intended for wireless image sensor networks. It allows researchers and developers of such networks to investigate, design, and evaluate algorithms and applications using real target hardware. WiSNAP offers standardized and easy-to-use Application Program Interfaces (APIs) to control image sensors and wireless motes, which do not require detailed knowledge of the target hardware. Nonetheless, its open system architecture enables support of virtually any kind of sensor or wireless mote. Application examples are presented to illustrate the usage of WiSNAP as a powerful development tool.
標(biāo)簽: combination previously multitude Abstract
上傳時(shí)間: 2013-12-03
上傳用戶:D&L37
The toolbox solves a variety of approximate modeling problems for linear static models. The model can be parameterized in kernel, image, or input/output form and the approximation criterion, called misfit, is a weighted norm between the given data and data that is consistent with the model. There are three main classes of functions in the toolbox: transformation functions, misfit computation functions, and approximation functions. The approximation functions derive an approximate model from data, the misfit computation functions are used for validation and comparison of models, and the transformation functions are used for deriving one model representation from another. KEYWORDS: Total least squares, generalized total least squares, software implementation.
標(biāo)簽: approximate The modeling problems
上傳時(shí)間: 2013-12-20
上傳用戶:15071087253
采用蟻群算法檢測(cè)圖像邊緣 This a demo program of image edge detection using ant colony, based on the paper, "An Ant Colony Optimization Algorithm For Image Edge Detection," IEEE Congress on Evolutionary Computation (CEC), pp. 751-756, Hongkong, Jun. 2008.
標(biāo)簽: detection program colony based
上傳時(shí)間: 2016-09-28
上傳用戶:cc1
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1