代码搜索:triangular
找到约 1,594 项符合「triangular」的源代码
代码结果 1,594
www.eeworm.com/read/202224/15389154
m mm2717.m
%x = rand(1,40);
%y = rand(1,40);
x=[0.95013 0.23114 0.60684 0.48598 0.8913 0.7621...
0.45647 0.018504 0.82141 0.4447 0.61543 0.79194...
0.
www.eeworm.com/read/202224/15389178
m mm2716.m
%x = rand(1,40);
%y = rand(1,40);
x=[0.95013 0.23114 0.60684 0.48598 0.8913 0.7621...
0.45647 0.018504 0.82141 0.4447 0.61543 0.79194...
0.
www.eeworm.com/read/101557/15826594
m lambdaab.m
function y=lambdaab(x,a,b)
% y=lambdaab(x) triangular function of width 2b centered at a (b>0)
%
y=(x/b+(b-a)/b).*((x>(a-b)) & (x=a) & (x
www.eeworm.com/read/191613/8426611
cpp pr0521.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 5.21 on page 114
// A Function that Tests for Triangularity
#include // defi
www.eeworm.com/read/378182/9248592
cu strsv.cu
/*
* Copyright 1993-2008 NVIDIA Corporation. All rights reserved.
*
* NOTICE TO USER:
*
* This source code is subject to NVIDIA ownership rights under U.S. and
* international Copyright laws
www.eeworm.com/read/378182/9248676
cu sspr2.cu
/*
* Copyright 1993-2008 NVIDIA Corporation. All rights reserved.
*
* NOTICE TO USER:
*
* This source code is subject to NVIDIA ownership rights under U.S. and
* international Copyright laws
www.eeworm.com/read/378182/9248678
cu stpsv.cu
/*
* Copyright 1993-2008 NVIDIA Corporation. All rights reserved.
*
* NOTICE TO USER:
*
* This source code is subject to NVIDIA ownership rights under U.S. and
* international Copyright laws
www.eeworm.com/read/378182/9248756
cu ssyr2.cu
/*
* Copyright 1993-2008 NVIDIA Corporation. All rights reserved.
*
* NOTICE TO USER:
*
* This source code is subject to NVIDIA ownership rights under U.S. and
* international Copyright laws
www.eeworm.com/read/179225/9364540
h game.h
// game.h : 标准系统包含文件的包含文件
//
#include
int seq_cnt = 6; //共有6个生成公式
int elem_cnt = 5; //每个公式有8个元素(不包括前面的0),共有5种猜法
int elem1=0, elem2=0, elem3=0, next_elem=0; //定义4个连续元素
int elemstart_
www.eeworm.com/read/448535/7531547
m forsub.m
function x = forsub(L,b)
%
% Solve Lx = b, where L is lower triangular
% %
% function x = forsub(L,b)
%
% L = lower triangular matrix
% b = right-hand side
%
% x = solution
% Copyright 19