代码搜索:MATLABR
找到约 130 项符合「MATLABR」的源代码
代码结果 130
www.eeworm.com/read/220657/14794107
cpp mai_mpath_channel.cpp
#include
#include
#include
#include
#include
#include "C:\MATLABR11\extern\include\mex.h"
#define CHIPS_PER_FRAME 38400
#define FRAME_DUR
www.eeworm.com/read/394488/8221602
m animate_2d_frame.m
function animate_2D_frame (resp,in_data)
% animate dynamic response of 2D-FRAME system
% cd D:\matlabR12\work\fem\anim\4;
dofN = 3; % dof's per node
dof_ = size(in_data.ND)*dofN;
warning of
www.eeworm.com/read/394488/8221628
m animate_3d_frame.m
function animate_3D_frame (resp,in_data)
% animate dynamic response of 3D-FRAME system
% cd D:\matlabR12\work\fem\anim\4;
dofN = 6; % dof's per node
dof_ = size(in_data.ND)*dofN;
warning of
www.eeworm.com/read/394488/8221631
m animate_3d_brick.m
function animate_3D_brick (resp,in_data)
% animate dynamic response of 3D-FRAME system
% cd D:\matlabR12\work\fem\anim\4;
dofN = 3; % dof's per node
dof_ = size(in_data.ND)*dofN;
warning of
www.eeworm.com/read/394488/8221634
m animate_bending_tri.m
function animate_bending_tri (resp,in_data);
% cd D:\matlabR12\work\fem\anim\4;
dofN = 3; % dof's per node
dof_ = size(in_data.ND)*dofN;
warning off;
XXX = max(max(abs( resp.dynamic.DYN_D(:
www.eeworm.com/read/490443/6456602
r isonormals.r
G:\MATLABR11\toolbox\matlab\specgraph\isonormals.m
[undefined]
[called]
isonormals function 0 1 0 1 0 1 0 0 0 0 0
parseargs function 2 2 0 6 0 0 0 0 0 0 0
xyzvcheck function 4 4 0 4 0 0 0 0 0 0
www.eeworm.com/read/490443/6456622
r isosurface.r
G:\MATLABR11\toolbox\matlab\specgraph\isosurface.m
[undefined]
[called]
isosurface function 0 1 0 2 0 1 0 0 0 0 0
parseargs function 2 2 0 7 0 0 0 0 0 0 0
xyzvcheck function 4 4 0 4 0 0 0 0 0 0
www.eeworm.com/read/490443/6456609
r isosurf.r
G:\MATLABR11\toolbox\matlab\specgraph\private\isosurf.m
[undefined]
[called]
isosurf function 0 10 0 5 0 0 0 0 0 0 0
[input]
in01 double 0 0 0 0 0 0 0 0 0 0 0
in02 double 0 0 0 0 0 0 0 0 0 0 0
www.eeworm.com/read/203579/15355492
m test.m
function pic=test(X)
%Usage:
%以下三句可作为
%[X,map]=imread('d:\matlabr11\yao\new_land\lena.bmp');
%X=X(1:128,1:128);
%scale为分解维数
scale=3;
scale2=0;
len1=0;len2=0;len3=0;len4=0;len5=0;
%load le
www.eeworm.com/read/275728/10799002
txt 4.txt
第4章 概率统计
本章介绍MATLAB在概率统计中的若干命令和使用格式,这些命令存放于<mark>MatlabR</mark>12\Toolbox\Stats中。
4.1 随机数的产生
4.1.1 二项分布的随机数据的产生
命令 参数为N,P的二项随机数据
函数 binornd
格式 R = binornd(N,P) %N、P为二项分布的两个参数,返回服从参数为N、P的二项分布的随机数,N、P大 ...