自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

cocoonyang的专栏

To be, or not to be

  • 博客(7)
  • 资源 (2)
  • 收藏
  • 关注

原创 Traversing an Array in Node.js

Traversing an Array in JavaScriptvar array_1 = [1,2,3,4,5,6];var array_2 = [];array_2['first'] = 1;array_2['second'] = 2;array_2['third'] = 3;array_2['forth'] = 4;array_2['fifth'] = 5;array_

2017-02-21 14:33:56 456 1

原创 Nonlinear finite elements for continua and structures -- examples 3.5

//// p96 Example 3.5// const PI = 3.1415926;//// X, Y -- initial coordinates// t -- time coordinate// a, b -- parameters// function x_coord( a, b, t, X, Y){ var theta = PI * t /

2017-02-17 11:07:06 1766 1

原创 学习BLAS库 -- Conjugate Gradient Method

implementating conjugate gradient method based on BLASlibrary.

2017-02-13 11:13:31 538 1

原创 学习BLAS库 -- AXPY

函数语法: saxpy(int n,float sa, float x[],int incx, float y[], int incy)功能: AXPY是 BLAS 中 第1级函数。AXPY计算向量的数乘运算和向量的加法运算。| Y | | X | | Y || Y | | X | | Y || Y | = sa | X | +...

2017-02-12 16:29:06 5458 1

原创 学习BLAS库 -- TRMV

函数语法:    XTRMV( UPLO, TRANS, DIAG, A, LDA, X, INCX)功能:    Triangular matrix vector multiply Open BLAS   trmv methods testing benchmark//// TRMV x <- Ax///* * void cblas_strmv( O...

2017-02-12 14:18:57 874

原创 学习BLAS库 -- GEMV

函数语法: XGEMV( TRANS, M, N, ALPHA, A, LDA, X, INCX, BETA, Y, INCY)功能: matrix vector multiply BLAS level 2 functionC语言版(f2c)DGEMV源代码:/* -- translated by f2c (version 19940927). You must lin...

2017-02-12 10:37:27 5757 1

原创 C printf() 样例

#include #include int main( int argc, char* argv[] ){ printf("printf() Benchmark \n"); printf("\n"); printf("int printf(const char *format,[argument]);\n"); printf("Print formatted data to st

2017-02-08 11:16:47 498 1

Chrome 离线安装版

Chrome Standalone 离线安装版 2015

2015-12-11

Sipesc.Opt

Sipesc.Opt是一款通用优化软件. 包含BFGS, SLP, SQP, GA, DGA等多种优化算法; 均匀试验设计,中心复合试验设计,正交试验设计, 析因试验设计等多种试验设计方法;以及,RSM,RBF 等替代模型工具。

2013-02-28

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除