代码搜索:Matrices

找到约 3,616 项符合「Matrices」的源代码

代码结果 3,616
www.eeworm.com/read/418304/10955258

m fex_abcd.m

function fex_abcd % This function computes matrices (A, B, C, D) for linear analysis by % means of numerical differentiation. It has to be run after state % initialization performed by power flow PSA
www.eeworm.com/read/417673/10980982

m stackmat.m

function out = stackmat(a, b) % STACKMAT Stack two matrices vertically. % For example: % stackmat([1 2 3 4 5], [5 6; 7 8]) % % Roger Jang, 990224 if isempty(a), out = b; return; end if isempt
www.eeworm.com/read/271760/10981548

m mknyq.m

function mknyq(r,im,w,plt) %MKNYQ Mark points along a Nyquist plot. % MKNYQ(R,IM,W,plt) marks the points R,IM % with the numbers in the vector W. % R and IM can be vectors or ma
www.eeworm.com/read/468922/6981917

m sort_knn.m

% This function used to sort tow matrices together function [a,b]=sort_knn(ii,y) [r1,c1]=size(ii); for i=1:c1-1 for j=1:c1-1 if(ii(j)>ii(j+1)) t=ii(j); t1=y(
www.eeworm.com/read/465772/7045461

m parte2y3.m

disp('Robot3 - Obtenci髇 del modelo cinem醫ico (apartado 3)') clear all % Usando valores simb髄icos syms t1 t2 t3 real; syms l1 l2 l3 l4 real; % Para probar valores concretos de angulos: % t1=p
www.eeworm.com/read/152244/7139431

m ep10_1.m

%%%%%%%%%%%% Exploratory problem 10.1 %%%%%%%%%%% % Discrete-Time Control Problems using % % MATLAB and the Control System Toolbox % % by J.H. Chow, D.K. Frederick, & N.W. Chbat
www.eeworm.com/read/464335/7165201

m golub.m

function A = golub(n) %GOLUB Badly conditioned integer test matrices. % GOLUB(n) is the product of two random integer n-by-n matrices, % one of them unit lower triangular and one unit upper tr
www.eeworm.com/read/460053/7258481

m momentbyrs.m

function m=momentbyRS(B,p,q,R,S) %fast calculation of image %moments based on Fluss and Tuk's method described in %"On the Calculation of Moments" %B - binary image matrix %R,S - previously ge
www.eeworm.com/read/459616/7270206

cpp rmult.cpp

// dynamic programming recursive matrix multiplication chains #include #include "make2db.h" int r[7] = {0, 10, 5, 1, 10, 2, 10}; int **kay; int C(int i, int j) {// Return c(i,j) and c
www.eeworm.com/read/452211/7445455

m simbjac.m

% function s = simbjac(a,b) % % DESCRIPTION % computes Jaccard similarity between row objects in matrices a and b % % Copyright (c) 1998-2002 by Alexander Strehl function s = simbjac(a,b) if ~exis