浅谈近红外脑成像英文期刊文章撰写

本文作者是刘宁博士 作者简介:刘宁,塔夫斯大学生物医学工程博士(Tufts University),斯坦福大学脑科学方向科研人员。 Frontiers 杂志客座编辑(Guest Associate Editor for Fronti
Xu Cui
11 sec read

nirs2img, create an image file from NIRS data

Update 2021/2/27: If you find griddata3 not working, try to change griddata3 to griddata. I was asked where to get nirs2img script. Here it is. The download link is at the bottom of this article. nirs2img is to create an image file from the input data. Then theimage file can be viewed by a
Xu Cui
51 sec read

All Articles

Increase your virtual machine disk size in VMWare

Host OS: Mac Virtual machine: Windows XP Problem: You initially set the hard disk size to 20G. Later you find you need to increase the disk size to 100G. Solution: turn off your virtual machine and set the hard disk size to 100G. You don’t need
Xu Cui
22 sec read

SVM (support vector machine) with libsvm

I am learning svm lately and tried libsvm. It’s a good package. Linear kernel example (support vectors are in circles): Nonlinear example (radial basis) 3-class example Basic procedure to use libsvm: Preprocess your data. This including normali
Xu Cui
1 min read

Sensitivity, specificity, ROC, AUC …

You can’t believe how much jargon there is in binary classification. Just remember the following diagram (from wiki). accuracy = ( TP + TN ) / (P+N), i.e. correctly classified divided by the total false discovery rate (FDR) = TP / (TP+FP), i.e.
Xu Cui
1 min read

Unable to build a valid certificate chain for the…

How to get a cert in the first place: http://www.adobe.com/devnet/air/articles/signing_air_applications_print.html If you encounter this error when signing your AIR application, do the following: Download the Thawte Code Signing CA from www.thawte.co
Xu Cui
39 sec read

Terrific AIR applications

You can get all applications from Adobe Marketplace Beautiful Design Employee Directory Elegant design. This application drives me to learn AIR. Adobe Media Player Elegant design Time 100 Desktop Nice design. Rotating globe, rotating pictures in 3D T
Xu Cui
25 sec read

Balloon model of hemodynamics

Picture: The vascular bed is treated as an expandable venous compartment (a balloon). If there is a burst of flow, the volume will increase and then return to baseline. That’s where ‘balloon’ comes from. During steady state (i.e. wi
Xu Cui
1 min read

Use htaccess to protect your web folder

Use htpasswd to create password file, or add password htpasswd -c .htpasswd fred htpasswd .htpasswd linda Then create a .htaccess file with the following text (not the path to the password file has to be full path) AuthUserFile /full/path/to/.htpassw
Xu Cui
18 sec read