代码搜索:Vector
找到约 10,000 项符合「Vector」的源代码
代码结果 10,000
www.eeworm.com/read/303023/13823883
h gridstatus.h
//
// Cross-platform free Puyo-Puyo clone.
// Copyright (C) 2006, 2007 Emma's software
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU Gener
www.eeworm.com/read/302503/13833620
m perceptron.m
function a = perceptron(feature1, feature2,theta,eta)
%-----------------------------------------------------
% a = perceptron(feature1, feature2,theta,eta)
% Function calculates the weight vector
www.eeworm.com/read/302395/13836616
m f2.m
function y=f2(x)
% f1 is Rosenbrock function
% The variabe x is a vector
%
d=length(x);
z=0;
for k=1:d-1
z=z+(100*(x(k+1)-x(k)^2)^2+(x(k)-1)^2);
end
y=z;
www.eeworm.com/read/301999/13844919
mkvectors
#!/bin/awk -f
{ howmany = $1 ; howlong = $2;
for (i = 0; i < howmany; i = i + 1) {
vector = "" i;
for (j = 1; j < howlong; j = j + 1)
vector = vector " " 1;
print vector;
}
exit;
}
www.eeworm.com/read/301833/13847708
mdl ann.mdl
Library {
Name "ann"
Version 3.00
BlockDataTips off
BlockParametersDataTip off
BlockAttributesDataTip off
BlockPortWidthsDataTip off
BlockDescriptionStringDataTip off
www.eeworm.com/read/301721/13851385
h nsplogic.h
/*M*
//
// INTEL CORPORATION PROPRIETARY INFORMATION
// This software is supplied under the terms of a license agreement or
// nondisclosure agreement with Intel Corporation and ma
www.eeworm.com/read/147682/5728091
m update_ipwin.m
% [E,stop,brk] = update_ipwin(E,e,d,wp,x1,x2,x3,x4,x5)
%
% Updates the iteration progress window.
%
% Input variable
% E : Learning curve vector
% e : new error sample (column vecto
www.eeworm.com/read/147682/5728094
m osfilter.m
% y = osfilter(h,x,L)
% Filters the signal x through the filter h
% in frequency domain using overlap-save.
% If given, L is used as the new samples per
% block, otherwise L is calculated i
www.eeworm.com/read/147529/5728567
m plot.m
%二维图(一元函数图)
%用法 plot(x,y,s) 其中x,y为向量,每一对分量代表一个数据点。
% s为表示颜色、连线和标记选择的字符串
%图形的线型,标记,颜色均可设定,常用有
% 颜色 | 线型 标记
% --------------------- -
www.eeworm.com/read/147529/5728687
m interp1.m
function yi = interp1(varargin)
% yi=interp1(x,y,xi)根据数据(x,y)给出在xi的线性插值结果yi.
% yi=interp1(x,y,xi,'spline')使用三次样条插值.
% yi=interp1(x,y,xi,'cubic')使用三次插值.
% 例如
% clear;close;fplot('sin',[0,2*pi]);