自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

#+!

  • 博客(12)
  • 资源 (1)
  • 收藏
  • 关注

转载 Functions for Working with Objects matlab

Functions for Working with ObjectsThis table lists functions commonly used when working with objects. FunctionPurposeallchildFind all children of specified obje

2012-03-27 14:01:17 469

转载 isa - Determine whether input is object of given class matlab

isa - Determine whether input is object of given classSyntaxK = isa(obj, 'class_name')DescriptionK = isa(obj, 'class_name') returnslogical1 (true) if obj isof class (or a subclas

2012-03-27 13:59:47 628

转载 matlab 判断是否handle

ishandle - Test for valid graphics object handleSyntaxishandle(H)Descriptionishandle(H) returns anarray whose elements are1 where the elements of H arevalid graphics or Sun Java

2012-03-27 13:57:06 4600

转载 sum 矩阵求和 matlab

matlab中针对的数据大多是以矩阵形式来处理,求和函数是sum下面通过几个例子来介绍求和函数的应用:matlab中:a=sum(A)  %列求和b=sum(A,2) %行求和c=sum(A(:)) %矩阵求和假定A为一个矩阵: sum(A)以矩阵A的每一列为对象,对一列内的数字求和。 sum(A,2)以矩阵A的每一行为对象,对一行内的数字求和。 a

2012-03-19 14:24:13 6063

转载 Best Practices for Programming MATLAB

These are the main coding practices and tools I always rely on.Vectorize (but sensibly).Use bsxfun in lieu of repmat where possible. When looping through an array, loop down columns to access me

2012-03-19 13:44:48 630

转载 bsxfun matlab element-by-element operation

bsxfun是一个matlab自版本R2007a来就提供的一个函数,作用是”applies an element-by-element binary operation to arrays a and b, with singleton expansion enabled.”举个例子。假设我们有一列向量和一行向量。a = randn(3,1), b = randn(1,3)a =

2012-03-19 13:43:44 1552

转载 deal - Distribute inputs to outputs matlab

deal - Distribute inputs to outputsNote  Beginning with MATLAB Version 7.0 software, you can accessthe contents of cell arrays and structure fields without using thedeal function.See

2012-03-16 17:48:44 782

原创 随机颜色矩阵 matlab

mat2cell(0+.75*rand(L,3),ones(1,L),3 )

2012-03-16 17:35:49 2793

转载 currentpoint in axes and figure matlab

Axes CurrentPoint2-by-3 matrixLocation of last button click, in axes data units.Contains the coordinates of two points defined by the location ofthe pointer at the last mouse click. MATLAB returns

2012-03-16 17:24:02 1175

原创 坐标系座标和figure中座标位置转换

S.ax = gca;set(S.ax,'unit','pix','position',[40 40 480 340]);axis([0 7 -1 1])% Fill the structure with data.S.XLM = get(S.ax,'xlim');S.YLM = get(S.ax,'ylim');S.AXP = get(S.ax,'pos');S.DF

2012-03-16 16:24:13 1184

转载 matlab Time domain signal display

dsp.TimeScope System object - Package: dspTime domain signal displayDescriptionThe TimeScope object displays time-domainsignals. To display time-domain signals in the Time Scope:Defi

2012-03-16 14:49:51 2422

转载 随机抽样一致(Random Sample Consensus, RANSAC)

RANSAC是“RANdom SAmple Consensus(随机抽样一致)”的缩写。它可以从一组包含“局外点”的观测数据集中,通过迭代方式估计数学模型的参数。它是一种不确定的算法——它有一定的概率得出一个合理的结果;为了提高概率必须提高迭代次数。该算法最早由Fischler和Bolles于1981年提出。图像检索中,RANSAC可以作为检索后的后续处理,对图像的中目标进行空间一致验证。

2012-03-12 16:47:37 4576 1

codeviewer

乱码查看

2011-11-11

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除