代码搜索:MatlAB
找到约 10,000 项符合「MatlAB」的源代码
代码结果 10,000
www.eeworm.com/read/476069/6773287
m ip_02_05.m
% MATLAB script for Illustrative Problem 5, Chapter 2.
echo on
% first part
Sx1=[ones(1,32)];
Rx1=ifft(Sx1,32);
% second part
Sx2=[ones(1,16),zeros(1,224),ones(1,16)];
Rx2=ifft(Sx2,256);
% pl
www.eeworm.com/read/476078/6773395
m ip_05_07.m
% MATLAB script for Illustrated Problem 5.7.
echo on
n0=.5*randn(100,1);
n1=.5*randn(100,1);
n2=.5*randn(100,1);
n3=.5*randn(100,1);
x1=1.+n0;
y1=n1;
x2=n2;
y2=1.+n3;
plot(x1,y1,'o',x2,y2,'*
www.eeworm.com/read/475765/6778120
m p9_15.m
% P9_15.M MATLAB Inverse Transforms
% Called PFE.M for partial fraction expansion
fprintf('See the diary file P9_15.dir')
www.eeworm.com/read/474933/6798179
txt atan2.txt
描述:matlab的Atan2函数与vb.net的Atan2函数计算结果并不一致。该程序用vb.net实现了matlab的Atan2函数。
Function Atan2 in matlab is different from that in vb.net. The program use vb.net to realize Atan2 function in matlab.
'y is
www.eeworm.com/read/475081/6802980
c mydaoju_mcc_component_data.c
//
// MATLAB Compiler: 4.3 (R14SP3)
// Date: Wed May 06 11:16:52 2009
// Arguments: "-B" "macro_default" "-M" "-silentsetup" "-d"
// "F:/ProgramFiles/MATLAB71/work/myDaoju//src" "-B" "ccom:mydaoju
www.eeworm.com/read/473505/6845039
m polyadd.m
%《MATLAB及其在理工课程中的应用指南》第九章例9-3-2调用的子程序
% 西安电子科技大学出版社出版 陈怀琛编著 1999年10月初版,2004年11月第二版
%
% 多项式补零相加
function y=polyadd(x1,x2)
n1=length(x1); n2= length(x2);
if n1>n2 x2=[zeros(1,n1-n2),x2];
elseif
www.eeworm.com/read/473505/6845045
m ex916.m
%《MATLAB及其在理工课程中的应用指南》第九章例9-1-6程序
% 方波表为多阶正弦波之和
% 西安电子科技大学出版社出版 陈怀琛编著 1999年10月初版,2004年11月第二版
%
t = 0:.1:10; % 设定一个时间数组,有101个点
y = sin(t); plot(t,y),figure(gcf),pause % 频率为w=1(f=
www.eeworm.com/read/473505/6845047
m ex48a.m
%《MATLAB及其在理工课程中的应用指南》第四章4.8.1演示程序ex48a
% 结构阵列赋值演示程序
% 西安电子科技大学出版社出版 陈怀琛编著 1999年10月初版,2004年11月第二版
%
disp('用场域赋值方法建立结构'),pause,echo on
student.name='John';
student.birthday='1985.06.15';
studen
www.eeworm.com/read/473505/6845057
m ex917.m
%《<mark>MATLAB</mark>及其在理工课程中的应用指南》第九章例9-1-7程序
% 方波经过低通滤波器后恢复
% 西安电子科技大学出版社出版 陈怀琛编著 1999年10月初版,2004年11月第二版
%
%连续信号的付利叶分析
%设已知信号的时域波形f(t),则其付利叶变换可表为
clear,tf=10; N=256;
t = linspace(0,tf,N); % 给出时间分割
w1 = ...