Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - MATLAB r-value
Search - MATLAB r-value - List

function [h,s,v] = rgb2hsv(r,g,b)
%RGB2HSV Convert red-green-blue colors to hue-saturation-value.
%   H = RGB2HSV(M) converts an RGB color map to an HSV color map.
%   Each map is a matrix with any number of rows, exactly three columns,
%   and elements in the interval 0 to 1.  The columns of the input matrix,
%   M, represent intensity of red, blue and green, respectively.  The
%   columns of the resulting output matrix, H, represent hue, saturation
%   and color value, respectively.
%
%   HSV = RGB2HSV(RGB) converts the RGB image RGB (3-D array) to the
%   equivalent HSV image HSV (3-D array).


Date : 2008-12-16 Size : 1.48kb User : leohee

DL : 0
用 excel 来计算数据中的相关系数 两个文件-excel used to calculate the data correlation coefficient of two documents
Date : 2025-12-22 Size : 5kb User : flyingbunny

DL : 0
用GA直接训练BP网络的权重算法 主程序:gafault.m 它包括以下子程序: 1. BP网络初始化:nninit.m――给出P,T,R,S1,S2; 2. 适应值计算函数:gabpEval.m; 3.将遗传算法的编码解码为BP网络所对应的权值、阈值函数:gadecod.m; -GA directly with BP network training algorithm the weights of the main program: gafault.m It includes the following subroutines: 1. BP network initialization: nninit.m-- given P, T, R, S1, S2 2. Adaptation value function: gabpEval.m 3. Genetic algorithm for BP network codec corresponding to the right value, the threshold function: gadecod.m
Date : 2025-12-22 Size : 1kb User : QAP

(有源代码)数值分析作业,本文主要包括两个部分,第一部分是常微分方程(ODE)的三个实验题,第二部分是有关的拓展讨论,包括高阶常微分的求解和边值问题的求解(BVP).文中的算法和算例都是基于Matlab计算的.ODE问题从刚性(STIFFNESS)来看分为非刚性的问题和刚性的问题,刚性问题(如大系数的VDP方程)用通常的方法如ODE45来求解,效率会很低,用ODE15S等,则效率会高多了.而通常的非刚性问题,用ODE45来求解会有很好的效果.从阶次来看可以分为高阶微分方程和一阶常微分方程,高阶的微分方程一般可以化为状态空间(STATE SPACE)的低阶微分方程来求解.从微分方程的性态看来,主要是微分方程式一阶导系数大的时候,步长应该选得响应的小些.或者如果问题的性态不是太好估计的话,用较小的步长是比较好的,此外的话Adams多步法在小步长的时候效率比R-K(RUNGE-KUTTA)方法要好些,而精度也高些,但是稳定区间要小些.从初值和边值来看,也是显著的不同的.此外对于非线性常微分方程还有打靶法,胞映射方法等.而对于微分方程稳定性的研究,则诸如相平面图等也是不可缺少的工具.值得提出的是,除了用ode系类函数外,用simulink等等模块图来求解微分方程也是一种非常不错的方法,甚至是更有优势的方法(在应用的角度来说).-(Source code) numerical analysis homework, this docment includes two parts, the first is ordinary differential equations (ODE) of the three examples, the second part is about the expansion of the discussion, including the higher-order ordinary differential & boundary value solution Problems (BVP). the text of the algorithm and numerical examples are based on the Matlab. ODE from the rigid (STIFFNESS) look into the issue of non-rigid and rigid problem, rigid problems (such as large coefficient VDP equation) such as using the always method ODE45 used to solve the problems , efficiency will be low, with ODE15S the other hand, many of the high efficiency. and the usual problem of non-rigid, there will be used to solve ODE45 very good results. Judging from the order can be for high-order differential equations and first-order ordinary differential equations, higher-order differential equations can be transformed into a general state space (STATE SPACE) used to solve the low-order different
Date : 2025-12-22 Size : 343kb User : wjl

基于matlab的二次型最优控制,比较Q,R值不同时的阶跃响应-Based on matlab quadratic optimal control, compare Q, R value is not the same time, the step response
Date : 2025-12-22 Size : 834kb User : paul li

DL : 0
Matlab codes for calculating RMS Value and finding roots.
Date : 2025-12-22 Size : 3kb User : Fabine1

功能描述:用matlab语言实现Levinson-Durbin算法 函数名:Levinson_Durbin_Algo 输入参数: (1)R:自相关矩阵或者其估计值 (2)P:AR模型的阶数 输出参数: (1)A:p阶AR模型的参数,它是一个长度为P+1的行向量 (2)E:噪声功率 调用函数:无 被调用:L_D_sim.m 作者:mingcheng 编写时间:2009-11-13 修改时间:2009-11-13 版本:V1.0 -Function Description: The matlab language Levinson-Durbin algorithm function name: Levinson_Durbin_Algo Input parameters: (1) R: correlation matrix or its estimated value (2) P: AR model orders output parameters: (1) A: p-order AR model parameters, it is a line of length P+1 vector (2) E: noise power call the function: No to be called: L_D_sim.m Study: mingcheng write time :2009-11-13 modified :2009-11-13 version: V1.0
Date : 2025-12-22 Size : 1kb User : 赵明诚

Mut,Div, Add, Sub an image with a constant value.. Median Filtre Histogram Rotate Translate
Date : 2025-12-22 Size : 1.06mb User : emrah genc

求R波及极大值的matlab程序,实验有效。-Find the maximum value of R matlab program affected the experimental effective.
Date : 2025-12-22 Size : 1kb User : 王军

DL : 0
TSP问题(又名:旅行商问题,货郎担问题)遗传算法通用matlab程序 D是距离矩阵,n为种群个数 参数a是中国31个城市的坐标 C为停止代数,遗传到第 C代时程序停止,C的具体取值视问题的规模和耗费的时间而定 m为适应值归一化淘汰加速指数,最好取为1,2,3,4,不宜太大 alpha为淘汰保护指数,可取为0~1之间任意小数,取1时关闭保护功能,建议取0.8~1.0之间的值 R为最短路径,Rlength为路径长度- TSP problem (also known as: traveling salesman problem, traveling salesman problem) genetic algorithm generic matlab program D is the distance matrix, n is the population number of parameters a C coordinates of the 31 cities to stop algebra, genetic to C on behalf of the program stops, the specific values ​ ​ of C depending on the size and time-consuming, m alpha for the fitness value of the normalized phase-out acceleration index, and is best taken as 1, 2, 3, 4, and not too much eliminated the protection index, it is desirable for any decimal between 0 and 1, taking 1:00 off the protective function, it is recommended to take a value between 0.8 to 1.0 R for the shortest path, Rlength for the path length
Date : 2025-12-22 Size : 4kb User : fuhai

题目:已知被控对象为 1/(10s+1)*exp(-0.5s)。假设系统给定为阶跃值r=30,采样时间为0.5s,系统的初始值r(0)=0。试分别设计: (1)常规的PID控制器; (2)常规的模糊控制器; 分别对上述2种控制器进行Matlab仿真,并比较控制效果 -Topic: Known charged object is 1/(10s+1)* exp (-0.5s). Assume that the system is given as the step value r = 30, the sampling time of 0.5s, the system the initial values ​ ​ of R (0) = 0. Trial were designed: (1) conventional PID controller (2) conventional fuzzy controller Matlab simulation of the two kinds of controllers, respectively, and compare the control effect
Date : 2025-12-22 Size : 168kb User : Youyou

MATLAB 最常處理的影像格式為索引影像(Indexed Images) 顯示此類型影像的語法如下: image(X) colormap(map) 其中X為影像的資料矩陣,map為色盤矩陣。 色盤矩陣的大小為K×3,每個橫列由三個元素所組成,分別是R(紅) 、G(綠)、B(藍) ,每個元素的範圍為0~1 X的值為1~K,也就是當X(i, j)的值為p,則像素點(i, j) 的顏色為map(p, :)這一列的值所決定。 -MATLAB image format most commonly treated as an index image (Indexed Images) display images of this type has the following syntax: image (X) colormap (map) where X is the image data matrix, map matrix for the color palette. The size of the matrix palette K3, each row consists of three elements, namely R (red), G (green), B (blue), and each element in the range of 0 ~ 1 X value is 1 ~ K, that is, when X (i, j) has a value of p, the pixel (i, j) of the color map (p, :) determined by the value of the column.
Date : 2025-12-22 Size : 628kb User : 王鈺琳

代码基于Matlab软件,讲述了大量数学方法的应用思路和过程。内容涉及回归分析、主成分分析、因子分析、聚类分析、判别分析、时(空)间序列分析、Markov链、R/S分析、线性规划、层次分析法以及人工神经网络建模等方法。通过模仿本书讲授的计算过程,读者可以加深对有关数学方法的认识和理解,并且掌握很多Matlab的应用技巧。代码规范,可研究价值高。  -Code based on the Matlab software, tells the story of a large number of mathematics method of thinking and process applications.Content in regression analysis, principal component analysis, factor analysis, cluster analysis, discriminant analysis, the (empty) sequence analysis, Markov chains, R/S analysis, linear programming, analytic hierarchy process (ahp) method and artificial neural network modeling, etc.By imitating the calculation process of this book teaches, readers can deepen the understanding and the understanding to the related mathematical methods, and master a lot of Matlab application skills.Code standards, it is with high research value.
Date : 2025-12-22 Size : 43kb User : 张开洲

DL : 0
matlab中当一段语音信号采样值不同时,延时与R(k)的关系-The relationship between time delay and R (k) is different when the sampling value of a speech signal is different in MATLAB
Date : 2025-12-22 Size : 5kb User : 李冉

DL : 0
控制器采用二维的模糊控制器,其输入信号偏差为e和偏差的变化为的de,控制对象为时滞对象: ,假设系统给定为阶跃值R=10,系统的初始值R(0)=0。本例采用的是增量控制方法,所以模糊控制器的其输出量为△U。后面经过一个积分环节,就得到了一个控制信号U。E、dE、△U的模糊论域划分为13个档次,论域取为[-10,10]之间。各个论域E, EC和△U的语言变量为{NB, NS,0,PS,PB}。采用两种方法实现pid输出曲线按的模拟。(A two-dimensional fuzzy controller is adopted. The input signal deviation is e and the variation of deviation is de. The control object is a time delay object. Assuming that the system is given as step value R=10, the initial value of the system is R (0) =0. This example uses the incremental control method, so the output of fuzzy controller for U. After an integral link, a control signal U is obtained. E, dE, fuzzy U domain is divided into 13 grades, the domain is [-10,10]. The domain of E, EC and U language variables {NB, NS, 0, PS, PB}.)
Date : 2025-12-22 Size : 1kb User : ヾ§  ̄▽)ゞ233

DL : 0
ICA盲源分离,实现对未知混合信号进行盲分离;低通滤波器。(BSS using eigenvalue value decomposition Program written by A. Cichocki and R. Szupiluk X [m x N] matrix of observed (measured) signals, W separating matrix, y estimated separated sources p time delay used in computation of covariance matrices optimal time-delay default p= 1 First stage: Standard prewhitening)
Date : 2025-12-22 Size : 1kb User : Arry W

DL : 0
利用matlab程序,进行曲线拟合,并返回误差R值(Matlab program, curve fitting, and return error R value)
Date : 2025-12-22 Size : 3kb User : lei666
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.