搜索资源列表
dir2cas
- 直接型到级联型的形式转换 % [b0,b,a]=dir2cas(b,a) %b 为直接型的分子多项式系数 %a 为直接型的分母多项式系数 %b0为增益系数 %b 为包含各bk的K乘3维实系数矩阵 %a 为包含各ak的K乘3维实系数矩阵 %-directly to the cascade-type conversion in the form of%% [belts, b, a] = dir2cas (b, a)% b-to direct the molecular p
数字图像处理Matlab编程
- 本程序是对一幅图像进行变灰度、旋转、锐化、在图像上画圆或椭圆、直线等操作的程序。 说明:要实现相应功能的操作,需要在输入框内输入正确的表达式。举例如下: 画直线:x1=20,y1=15,x2=150,y2=100 画圆:x=100,y=100,r=20 画椭圆:x=100,y=100,r=20,a=16,b=9 旋转:x=30(度数),ax=100,ay=90 锐化:x=80-this procedure is a gray image change, rotation, sharpening
TVL1_HCS_v1
- % May 2010 % This matlab code implements TVL1 based Hybrid Compressive Sensing using LSQR. % Only suitable the small scale data due to the costly storage and computation. % % a - M x N measurement matrix: random sampling alone or hybrid sampling (ran
shuxuejianmo_3.rar
- 某厂向用户提供发动机,合同规定,第一、二、三季度末分别交货40台、60台、80台.每季度的生产费用为 (元),其中x是该季生产的台数.若交货后有剩余,可用于下季度交货,但需支付存储费,每台每季度c元.已知工厂每季度最大生产能力为100台,第一季度开始时无存货,设a=50、b=0.2、c=4,问工厂应如何安排生产计划,才能既满足合同又使总费用最低.讨论a、b、c变化对计划的影响,并作出合理的解释,to provide users with a factory
first
- 二维傅里叶变换,对图像进行二维傅里叶变换处理-Two-Dimensional Fast Fourier Transform The purpose of this project is to develop a 2-D FFT program "package" that will be used in several other projects that follow. Your implementation must have the capabilitie
bingji
- 对给定集合a和b,能够编出求a和b的并集C的程序。-For a given set a and b, can be compiled out of order to a and b, and the set of C procedures.
fast_way
- 数学实验中的最速落径问题 a,b是不在一条铅垂线上的两点,在链接a,b两点的所有光滑曲线中,找出一条曲线,使得初速度为零的质点,在重力的作用下,自a点下滑到b点所需的时间最短 -Mathematical experiment steepest drop Path problems a, b is not a vertical line of two points, the link a, b two points in all the smooth curve, to find a cu
awgn
- DTMF(双音多频)是用两个特定的单音频组合信号来代表数字信号的一种编码技术。两个单音的频率不同,代表的数字或实现的功能也不同。可采用8种频率代表电话机上的16个按键,10个数字键0~9和6个功能键*、#、a、b、C、D。具体的频率组合见参考书。要求: (1) 根据键盘输入的符号,利用MaTLab产生对应的DTMF信号;(2) 分别利用FFT算法和Goertzel算法计算该DTMF信号的频谱并画出频谱图;(3) 根据频谱图确定DTMF信号所代表的符号是否和输入的符号一致。 -DTMF (
5
- 一道程序编译顺序的考题,涉及到函数调用的先后顺序及运算符号的优先级等问题。下面我展开给你讲。 C的程序编译总是从main函数开始的,这道题的重点在“fun((int)fun(a+c,b),a-c)) ”语句。 系统首先要确定最外层 fun()函数的实参,第一个参数的确定需要递归调用fun()函数(不妨称其为内层函数)。内层函数的两个参数分别为x=a+b=2+8=10、y=b=5,执行函数体x+y=10+5=15,于是得外层函数的参数x=15。其另一个参数y=a-c=2-b=-6,再次
fisher_classify
- function [clusters,c,F]=fisher_classify(a,b,data) fisher判别法程序 输入a、b为已知类别样本的样本-变量矩阵,data为待分类样本 输出C为判别系数向量 -function [clusters, c, F] = fisher_classify (a, b, data) fisher discriminant method procedures input a, b for a sample of known typ
b
- 针对Z变换法无法求取相邻采样点之间的输出响应的局限,利用MaTLab程 序语言,对单位负反馈系统的改进z变换法进行了程序设计。通过simulink仿真的实验,证 明该程序运算快速、准确,使用方便。-For the Z transform method can not strike between adjacent sampling points in response to the limitations of the output, using MaTLab programming l
CordFitIdeal
- 坐标转换:已知n个点在a,b两坐标系中的坐标值,采用优化方法求转换关系(标准的7参数转换关系,x,y,z的移动,x,y,z的旋转,以及缩放系数)ps:附带空间旋转公式。input: points in a and b。 output:transfer relationship (u,v,w: shit of x,y,z。 a,b,g: rotate of x,y,z 。k:zoom)-Coordinate Transfer:a,b are tow coordinates. This progra
SSMULT-2.0.1.tar
- 实现两个稀疏矩阵相乘(效率高于早期的Matlab自带的程序),Matlab编程 -SSMULT is a simple stand-alone MaTLab mexFunction that computes C=a*b where both a and b are sparse. It is typically faster and always uses less memory than C=a*b in MaTLab 7.4 (or earlier). Works on MaTLab
3
- 1、随机生成一个5*5矩阵a,元素符合均匀分布;再随机生成一个5*5矩阵b,元素符合正态分布。对a和b进行加、减、乘、除、比较等矩阵运算,查看运算结果。 2、创建5阶魔术矩阵,求a的行列式、特征值、逆、秩、迹、条件数。 3、假设矩阵 ,求a的LU分解、正交分解、特征值分解、奇异值分解。 4、创建6阶单位稀疏矩阵,并显示其全部元素。 -1, randomly generated a 5* 5 matrix a, elements in line with uniform
dikaer
- 笛卡儿乘积是以有序偶为元素组成的集合,对给定的集合a和b,求笛卡儿乘积,只需取尽由集合a的元素及集合b的元素,并构成序偶<ai,bj>送入C之中即可。-Cartesian product even as the elements in an orderly set of a given set a and b, seeking Cartesian product, simply take to do by the collection a collection of elements
Romberg
- Numerical approximation rn of the definite integral from a to b that is obtained with the aid of Romberg s method with n rows and n columns.
fangzhen
- 赶火车过程仿真 一列火车从a站经过b站开往C站,某人每天赶往b站乘这趟火车。已知火车从a站到b站运行时间为均值30分钟、标准差为2分钟的正态随机变量.火车大约在下午1点离开a站。离开时刻的频率分布为 -Process simulation, a train to catch the train from a through b station station station bound for C, b Station tour someone rushed to the train e
Minimum-Cost-Flow
- 最小费用最大流问题是经济学和管理学中的一类典型问题。在一个网络中每段路径都有“容量”和“费用”两个限制的条件下,此类问题的研究试图寻找出:流量从a到b,如何选择路径、分配经过路径的流量,可以达到所用的费用最小的要求。-Minimum cost maximum flow problem is economics and management in a class of typical problems. Each path in a network has the " capacity&q
project_point_to_line_segment
- Matlab function for calculation project point to line segment(a,b,p) which returns the closest point to p on the line segment a to b -Matlab function for calculation project point to line segment(a,b,p) which returns the closest point to p on the lin
图论
- 求通过回溯算法遍历图中所有的路径求得a到b的最短距离(Seeking through backtracking algorithm traversal of all the paths in the path to obtain the shortest distance from a to b)