代码搜索:Mathworks
找到约 4,523 项符合「Mathworks」的源代码
代码结果 4,523
www.eeworm.com/read/345494/11812610
m ex0709.m
%例7-9 字符数组的格式操作
a=strvcat('Welcome','to','MathWorks')
upper(a)
strjust(a,'center')
sort(a(3,:)) %对字符数组a的第三行字符串,按照升序排列
sort(a) %对字符数组a的每一列,按照字符升序排列
sort(a,2) %对字符数组a的每一行,按照字符升序排列
sort(a,2,'desce
www.eeworm.com/read/155568/11863010
m bizcard.m
function bizcard
% BIZCARD Future version of The MathWorks business card.
% Click anywhere on the card.
clf reset
shg
set(gcf,'name','The MathWorks Business Card', ...
'menu','none','num
www.eeworm.com/read/154209/11983501
m frefine.m
function rs = frefine(a,v,rs)
% f = frefine(a,v,rs);
% refine local minima and maxima of H using Newton's method
%
% H : H = cos(w*v)*a;
% rs : initial values for the extrema of H
%
% Copyri
www.eeworm.com/read/154209/11983509
m sbclose.m
function sbclose(fig)
%SBCLOSE Signal Browser close request function
% This function is called when a browser window is closed.
% SBCLOSE(FIG) closes the browser with figure handle FIG.
%
www.eeworm.com/read/154209/11983533
m fixedfont.m
function [fontname,fontsize] = fixedfont
%FIXEDFONT Returns name and size of a fixed width font for this system.
% Example usage:
% [fontname,fontsize] = fixedfont;
% Copyright (c) 1988-
www.eeworm.com/read/154209/11983783
m pinrect.m
function bool = pinrect(pts,rect)
%PINRECT Determine if points lie in or on rectangle.
% Inputs:
% pts - n-by-2 array of [x,y] data
% rect - 1-by-4 vector of [xlim ylim] for the rectangl
www.eeworm.com/read/256237/12012231
m myfunc.m
function [ F ] = myfunc( str )
% Function to be MINIMIZED
% By Kyriakos Tsourapas
% You may contact me through the Mathworks site
% University of Essex 2002
[x, y] = myconvert( str );
F = 100 * (x^2
www.eeworm.com/read/342008/12047538
m solvelin.m
function [w,b] = solvelin(p,t)
%SOLVELIN Design linear network.
%
% [W,B] = SOLVELIN(P,T)
% P - RxQ matrix of Q input vectors.
% T - SxQ matrix of Q target vectors.
% Returns:
% W - SxR weight
www.eeworm.com/read/342008/12047625
m normr.m
function n = normr(m)
%NORMR Normalize rows of matrix.
%
% NORMR(M)
% M - a matrix.
% Returns a matrix the same size with each
% row normalized to a vector length of 1.
%
% See also NORMC, PNORMC.
www.eeworm.com/read/152654/12095014
m ss.m
% SS 偼丄忬懺嬻娫儌僨儖傪嶌惉丄傑偨偼丄LTI 儌僨儖傪忬懺嬻娫儌僨儖偵曄姺
% 偟傑偡丅
%
% 嶌惉:
% SYS = SS(A,B,C,D) 偼丄A, B, C, D 峴楍偐傜側傞楢懕帪娫忬懺嬻娫(SS)儌僨
% 儖 SYS 傪嶌惉偟傑偡丅弌椡 SYS 偼 SS 僆僽僕僃僋僩偱偡丅D = 0 偱愝掕偡傞
% 偙偲偑偱偒丄偙偺応崌丄揔摉側師尦偺僛儘峴楍傪堄枴偟傑偡丅
%
...