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

本文作者是刘宁博士 作者简介:刘宁,塔夫斯大学生物医学工程博士(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

brain images: convert between different formats

For single file to single file conversion, you usually use mri_convert of freesurfer. For example mri_convert x.img y.nii Other options would be LONI Debabeler or MRICro. Here are some special cases: multiple 3D ANALYZE to a single 4D Nifti: mri_conc
Xu Cui
1 min read

I support PLoS

As an author, when you publish paper, you pay to the publisher; As a reader, when you read paper, you pay to the publisher; This is absolutely ridiculous! The research is done using tax payer’s money and tax payers have to pay to access the pub
Xu Cui
9 sec read

amfphp bug? Negative integer becomes big positive

In local actionscript, if you have an object like: o.x = 6; o.y = -5; Then send this object to remote server using amfphp, the object becomes o = 6; o = 4294967290; This could be a bug…
Xu Cui
7 sec read

sqlite: update id automatically in a relational table

Let’s say we have three tables: user, paper, userPaperRelation. user has columns id and username paper has column id and title userPaperRelation has columns userID and paperID. userID corresponds to the id in user table; paperID corresponds to
Xu Cui
22 sec read

fslmerge: convert 3D ANALYZE to Nifti

/fs/quarry/cuixu/fsl/fslmerge -t f I_???.* On my computer, it doesn’t convert to .nii file; but to a single img/hdr pair. This method won’t be used. Instead, I use freesurfer’s mri_concat now. See here.
Xu Cui
8 sec read

vim cheatsheet

http://www.tuxfiles.org/linuxhelp/vimcheat.html Author: Nana Långstedt < nana.langstedt at gmail.com >   Working with files Vim command Action :e filename Open a new file. You can use the Tab key for automatic file name completion, just li
Xu Cui
3 min read

LaTex support

I use jsMath to write mathematical equations in this blog. Here is an example This is inline equation (use slash parenthesis): \(\alpha+\beta\geq\gamma=\pi\) This is one line equation (use double dollar sign \$\$…\$\$): $$\int {1\over x}\,dx =
Xu Cui
32 sec read

MatLab: figure window always on top (front)

When there is keyboard input, the command window of MatLab will gain focus and all its figure windows will be hiden back. How to make a figure window always on top? I use setWindowOnTop.m downloaded from http://webscripts.softpedia.com/script/Develop
Xu Cui
9 sec read

typecast in MatLab to convert data type

We need to get real-time neural signal from Hitachi’s ETG4000. Hitachi provides a MatLab script “RealtimeOT” to get data from a parallel port and convert the binary data to float. Here is what they did: fp=fopen('temp',�
Xu Cui
26 sec read