CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - array class
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - array class - List
[
matlab
]
HardWork
DL : 0
上转型对象 1.实验目的 掌握上转型对象的使用。 2. 实验要求 要求有一个abstract类,类名为Employee,Employee的子类有YearWorker、MonthWorker和WeekWorker。YearWorker对象按年领取薪水,MonthWorker按月领取薪水,WeekWorker按周领取薪水。Employee有一个abstract方法: public abstract earnings() 子类必须重写父类的earnings()方法,给出各自领取薪水的具体方式。 有一个Company类,该类用Employee数组作为成员,Employee数组的单元可以是YearWorker对象、MonthWorker对象或WeekWorker对象的上转型对象。程序能输出Company对象一年需支付的薪水总额。 -The transformation of the object 1. Purpose of the experiment used to grasp the transformation of the object. 2. Experiment requires a abstract class requirements, class named Employee, Employee of the child class has YearWorker, MonthWorker and WeekWorker. YearWorker object to receive annual salary, MonthWorker receive a monthly salary, WeekWorker receive weekly salary. Employee one abstract method: public abstract earnings () sub-class must override the parent class of earnings () method, given their own specific way of receiving pay. A Company class, such as members with an array of Employee, Employee of the array elements can be YearWorker object, MonthWorker object or objects on the transformation of objects WeekWorker. Company object program can output a year' s salary to be paid the total amount.
Date
: 2026-01-19
Size
: 3kb
User
:
覃翠娟
[
matlab
]
conversion_gui
DL : 0
function ret = Int2Hex(var) Prints integer array to hexadecimal string varType = class(var) cast signness away: if ( u ~= varType(1) ) varType = [ u varType] var = typecast(var,varType) end nBits = str2double(varType(5:end)) if (64 == nBits) split 64 bit case into two 32 s cuz dec2hex doesn t handle 64 bit... varType(5:end) = 32 var = typecast(var,varType) end ret = dec2hex(var) if (64 == nBits) littleEndian = all(typecast(uint32(1), uint16 )==[1 0]) first = 1 + littleEndian second = 2 - littleEndian ret = [ret(first:2:end,:),ret(second:2:end,:)] end end-function ret = Int2Hex(var) Prints integer array to hexadecimal string varType = class(var) cast signness away: if ( u ~= varType(1) ) varType = [ u varType] var = typecast(var,varType) end nBits = str2double(varType(5:end)) if (64 == nBits) split 64 bit case into two 32 s cuz dec2hex doesn t handle 64 bit... varType(5:end) = 32 var = typecast(var,varType) end ret = dec2hex(var) if (64 == nBits) littleEndian = all(typecast(uint32(1), uint16 )==[1 0]) first = 1 + littleEndian second = 2 - littleEndian ret = [ret(first:2:end,:),ret(second:2:end,:)] end end
Date
: 2026-01-19
Size
: 8kb
User
:
thinkingbig4
[
matlab
]
begoodatMATLAB6.5
DL : 0
本书第一章系统讲述 MATLAB6.5 的集成工作平台,引导读者初会MATLAB 基本用法。 第二、三章系统叙述MATLAB6.1 的四大基本数据类型(数值数组、字符串数组、元胞数组、构架数组),至于其它扩展数据类型(函数句柄、符号数据、内联函数、unit 数组、稀疏类)则另辟章节专述。此后,本书用九个独立章分述MATLAB6.5 的数值计算、符号计算、函数和数据可视、面向对象编程、GUI 交互操作界面设计、EXE 独立应用程序生成、实现不同软件平台交互的API、M-book 数据图形文字环境集成等八大通用功能。本书用专门的一章深入浅出地阐明SIMULINK 的分层建模、仿真功能、与MATLAB 交互的功能。-This book chapter describes the system integration work MATLAB6.5 platform to guide the reader will be the beginning of the basic usage of MATLAB. Second, the system described in Chapter Four MATLAB6.1 basic data types (numeric arrays, string arrays, cell arrays, structure arrays), while the other extended data types (function handle, symbol data, inline functions, unit array , sparse class) then open another chapter specifically stated. Since then, the book chapters are described by nine independent MATLAB6.5 the numerical computation, symbolic computation, functions, and data visualization, object-oriented programming, GUI interactive interface design, EXE standalone application generation software platform to achieve interaction of different API, M-book data in graphical environment for integration of the eight general-purpose language features. This book devoted a chapter in layman s language to clarify the hierarchical SIMULINK modeling, simulation capabilities, and the MATLAB int
Date
: 2026-01-19
Size
: 3.3mb
User
:
yyj
[
matlab
]
function3
DL : 0
The DocPolynom to Character Converter The char method produces a character string that represents the polynomial displayed as powers of an independent variable, x. Therefore, after you have specified a value for x, the string returned is a syntactically correct MATLAB expression, which you can evaluate. The char method uses a cell array to collect the string components that make up the displayed polynomial. The disp method uses char to format the DocPolynom object for display. Class users are not likely to call the char or disp methods directly, but these methods enable the DocPolynom class to behave like other data classes in MATLAB. Here is the char method. - The DocPolynom to Character Converter The char method produces a character string that represents the polynomial displayed as powers of an independent variable, x. Therefore, after you have specified a value for x, the string returned is a syntactically correct MATLAB expression, which you can evaluate. The char method uses a cell array to collect the string components that make up the displayed polynomial. The disp method uses char to format the DocPolynom object for display. Class users are not likely to call the char or disp methods directly, but these methods enable the DocPolynom class to behave like other data classes in MATLAB. Here is the char method.
Date
: 2026-01-19
Size
: 1kb
User
:
sabah_altaie
[
matlab
]
function3
DL : 0
The DocPolynom to Character Converter The char method produces a character string that represents the polynomial displayed as powers of an independent variable, x. Therefore, after you have specified a value for x, the string returned is a syntactically correct MATLAB expression, which you can evaluate. The char method uses a cell array to collect the string components that make up the displayed polynomial. The disp method uses char to format the DocPolynom object for display. Class users are not likely to call the char or disp methods directly, but these methods enable the DocPolynom class to behave like other data classes in MATLAB. Here is the char method.- The DocPolynom to Character Converter The char method produces a character string that represents the polynomial displayed as powers of an independent variable, x. Therefore, after you have specified a value for x, the string returned is a syntactically correct MATLAB expression, which you can evaluate. The char method uses a cell array to collect the string components that make up the displayed polynomial. The disp method uses char to format the DocPolynom object for display. Class users are not likely to call the char or disp methods directly, but these methods enable the DocPolynom class to behave like other data classes in MATLAB. Here is the char method.
Date
: 2026-01-19
Size
: 1kb
User
:
sabah_altaie
[
matlab
]
command_window_text
DL : 0
这个m-文件允许你导出所有在命令窗口中的文本到字符串单元阵列,每个条目是一个从窗口文本行。未分析的原始字符串也可以,如果需要的话。 操作非常简单 -使用findjobj功能(操作要求),此文件查找在根窗口,并得到适当的对象从文本。 我一直在寻找一种方式做,特别是一些软件中的错误我始终跟踪这,似乎已经没有人写了这种方法,所以我现在在这里供您使用。 这是一个有点慢,有可能是一个特定类寻找更快的方法- 如果这样,让我知道!-This m-file allows you to export all text in the Command Window to a cell array of strings, each entry being a line of text from the window. The unparsed raw string is also available, if desired. Operation is very simple- using the findjobj function (required for operation), this file looks for the appropriate object in the root window and gets text from it. I was looking for a way to do this, particularly for error tracking in some software I maintain, and nobody seemed to have written up this method, so I present it here for you to use. It s a bit slow, there is probably a quicker way of looking for a specific class- if so, let me know!
Date
: 2026-01-19
Size
: 2kb
User
:
bcmvqqve
[
matlab
]
hii
DL : 1
class a chopper.is also called as step down chopper mostly used in pv array characterstics for the mppt algorithms
Date
: 2026-01-19
Size
: 9kb
User
:
srid
[
matlab
]
learning-matlab6.5
DL : 0
本书第一章系统讲述 MATLAB6.5 的集成工作平台,引导者初会MATLAB 基本用法。第二、三章系统叙述MATLAB6.1 的四大基本数据类型(数值数组、字符串数组、元胞数组、构架数组),至于其它扩展数据类型(函数句柄、符号数据、内联函数、unit 数组、稀疏类)则另辟章节专述。此后,本书用九个独立章分述MATLAB6.5 的数值计算、符号计算、函数和数据可视、面向对象编程、GUI 交互操作界面 设计、EXE 独立应用程序生成、实现不同软件平台交互的API、M-book 数据图形文字环境集成等八大通用功能。-This book chapter describes the system integration work MATLAB6.5 platform, will guide the early MATLAB basics. Second, the system described in chapters four MATLAB6.1 basic data types (numeric arrays, string arrays, cell arrays, structure arrays), as other extended data types (function handle, symbol data, inline functions, unit array , sparse class) is to open another chapter specifically mentioned. Since then, the book points out with nine separate chapters MATLAB6.5 numerical calculations, symbolic computation, functions, and data visualization, object-oriented programming, GUI interactive interface design, EXE standalone application to generate and realize different software platforms to interact API, M-book data in graphical text such as the eight general-purpose functions integrated environment.
Date
: 2026-01-19
Size
: 3.3mb
User
:
zhangting
[
matlab
]
ArrayExcel
DL : 0
类似于matlab的数组编辑类(原创)及借用BasicExcel类快速读取读入Excel数据-some class for editing array like in matlab,and read and write to excel with BasicExcel class.
Date
: 2026-01-19
Size
: 40kb
User
:
liuyusheng
[
matlab
]
MUSIC-DOA-estimation-algorithm
DL : 0
MUSIC是基于天线阵列协方差矩阵的特征分解类DOA估计算法,这里是波束空间MUSIC算法源程序。-MUSIC DOA estimation algorithm is based on the decomposition class features antenna array covariance matrix, here is the beam space MUSIC algorithm source.
Date
: 2026-01-19
Size
: 2kb
User
:
[
matlab
]
classic-MUSIC-source
DL : 0
MUSIC算法是基于天线阵列协方差矩阵的特征分解类DOA算法,这里给出的是经典MUSIC源程序。-MUSIC algorithm is based on the characteristics of the antenna array covariance matrix decomposition class DOA algorithm presented here is the classic MUSIC source.
Date
: 2026-01-19
Size
: 3kb
User
:
[
matlab
]
Root-MUSIC-algorithm-source.
DL : 0
MUSIC算法是基于天线阵列协方差矩阵的特征分解类DOA算法,这里给出的是求根MUSIC算法源程序。-MUSIC algorithm is based on the characteristics of the antenna array covariance matrix decomposition class DOA algorithm given here is Root MUSIC algorithm source.
Date
: 2026-01-19
Size
: 3kb
User
:
[
matlab
]
BFSN_Algorithm
DL : 0
分类算法,参数分别为G(相似度矩阵),r(邻居门限),lambda(类门限),返回值A,一个cell数组,每个元素是一个向量,包含了一个类的所有元素。-Classification algorithm parameters are G (similarity matrix), r (neighbor threshold), lambda (class threshold), the return value A, a cell array, each element is a vector containing all the elements of a class.
Date
: 2026-01-19
Size
: 2kb
User
:
徐毓全
[
matlab
]
TLS_esprit
DL : 0
最小二乘ESPRIT算法。阵列信号处理中一类不需要谱搜索的空间谱估计算法-ESPRIT least squares algorithm. Array signal processing in a class does not need the spectrum of spatial spectrum estimation algorithm search
Date
: 2026-01-19
Size
: 1kb
User
:
晓聪
[
matlab
]
FORWARD_SMOOTHNESS_MUSIC
DL : 0
前向平滑MUSIC算法,阵列信号处理空间谱估计中处理相干信号的一类算法。-Forward smoothing MUSIC algorithm, array signal processing spatial spectrum estimation of coherent signal processing algorithm for a class.
Date
: 2026-01-19
Size
: 1kb
User
:
晓聪
[
matlab
]
i3104-ArrayClass-d6ec9bf
DL : 0
This class provides an example of how to use a MATLAB class to handle an array data.
Date
: 2026-01-19
Size
: 7kb
User
:
tariq
[
matlab
]
bdjcqjyc
DL : 0
使用matlab实现智能预测控制算法,包含了阵列信号处理的常见算法,有小波分析的盲信号处理,通过matlab代码,包含优化类的几个简单示例程序,加入重复控制。-Use matlab intelligent predictive control algorithm, Contains a common array signal processing algorithm, There Wavelet Analysis Blind Signal Processing, By matlab code, Optimization class contains several simple sample programs, Join repetitive control.
Date
: 2026-01-19
Size
: 8kb
User
:
sxfccq
[
matlab
]
diuttkqp
DL : 0
这个有中文注释,看得明白,包含优化类的几个简单示例程序,LCMV优化设计阵列处理信号,时间序列数据分析中的梅林变换工具,用于信号特征提取、信号消噪,进行逐步线性回归。- The Chinese have a comment, understand it, Optimization class contains several simple sample programs, LCMV optimization design array signal processing, Time series data analysis Mellin transform tool, For feature extraction, signal de-noising, Stepwise linear regression.
Date
: 2026-01-19
Size
: 9kb
User
:
njhhkc
[
matlab
]
nthigaju
DL : 0
通过matlab代码,包含优化类的几个简单示例程序,matlab编写的元胞自动机,BP神经网络用于函数拟合与模式识别,MIMO OFDM matlab仿真,阵列信号处理的高分辨率估计。- By matlab code, Optimization class contains several simple sample programs, matlab prepared cellular automata, BP neural network function fitting and pattern recognition, MIMO OFDM matlab simulation, High-resolution array signal processing estimates.
Date
: 2026-01-19
Size
: 6kb
User
:
pbsthi
[
matlab
]
wbnsambg
DL : 0
计算多重分形非趋势波动分析,有均匀线阵的CRB曲线,包含优化类的几个简单示例程序,合成孔径雷达(SAR)目标成像仿真,相控阵天线的方向图(切比雪夫加权),包含光伏电池模块、MPPT模块、BOOST模块、逆变模块。- Calculate the multifractal trend fluctuation analysis, There ULA CRB curve, Optimization class contains several simple sample programs, Synthetic Aperture Radar (SAR) imaging simulation target, Phased array antenna pattern (Chebyshev weights), PV modules contain, MPPT module, BOOST module, inverter module.
Date
: 2026-01-19
Size
: 8kb
User
:
nazzuj
«
1
2
3
4
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.