代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/475765/6777707
m cl2ord.m
% CL2ORD.M - Plot solution to differential eq. system xdot=Ax:
% This M-file uses function CL2ORDF.M to define equations
% and ode23 to solve them.
% INPUT: Final time; Plot is from t=0 to t=tf
www.eeworm.com/read/475765/6778081
m ex4_7.m
% EX4_7.M Verify results of Example 4.7
% Computes determinant and trace of a matrix and compares to
% product and sum of eigenvalues, respectively.
%
A=[1 -1 0;0 1 1;0 0 -2] % Define the
www.eeworm.com/read/473082/6855577
java intmatrix.java
/* IntMatrix.java */
import java.io.*;
import java.awt.*;
/**
* An example implementation of the DrawingObj interface
* that can be added to the drawingPanel (an instance of
*
www.eeworm.com/read/471423/6892497
m mse_compare.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Author: Vinay U
www.eeworm.com/read/471423/6892498
asv mse_compare.asv
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Author: Vinay U
www.eeworm.com/read/471135/6898151
m pttls.m
function [Xr, Sr, rho, eta] = pttls(V, d, colA, colB, r)
%PTTLS Truncated TLS regularization with permuted columns.
%
% Given matrices A and B, the total least squares (TLS) problem
% consists o
www.eeworm.com/read/295657/8147953
m c7ex4.m
a = [0 1; -6 -5]; % Define the a matrix
eiga = eig(a); % Compute eignvalues
eiga % Display eignvalues
www.eeworm.com/read/395679/8160907
m myhilb.m
function[A,B]=myhilb(n,m)
% MYHILB 生成一个Hilbert矩阵
% [A,B]=myhilb(n,m)
% where
% n,m are size of the Hilbert matrix,if only one
% argument given,then a square matrix is generated
% A is the Hil
www.eeworm.com/read/395679/8160925
m myhilb1.m
function[A,B]=myhilb(n,m)
%问题:生成一个Hilbert矩阵,该矩阵是一个n×m矩阵,它的第i行
%第j列的元素为1/(i+j-1)。如果想在编写的函数中实现下面几点:
%1)如果只给出一个输入参数,则会自动生成一个方阵,即有m=n
%2)如果想返回两个参数A和B,则返回的B矩阵为A矩阵的平方,
% 即B=A'A
%3)在函数中给出合适的帮助信息,包括基本 ...
www.eeworm.com/read/194440/8193097
m event_spike.m
function amat=event_spike(amat,t,x,tnot,xnot,amp)
% EVENT_SPIKE: inserts a spike in a matrix
%
% amat=event_spike(amat,t,x,tnot,xnot,amp)
%
% EVENT_SPIKE inserts a spike event in a matrix.
%
%