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

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

Can we control a robot by thought?

Honda has developed new brain-machine interface (BMI) technology that allows humans to control the Asimo humanoid robot simply by thinking certain thoughts. The technology is based on combined EEG and NIRS. The system reportedly has an accuracy rate
Xu Cui
12 sec read

How much money did I make from an app?

Undoubtedly some people are very successful in making money by developing a smartphone app. Back in 2012 I developed an app called “Handbook of Brain” which is a collected resources of brain anatomy, function and diseases. I put the app i
Xu Cui
27 sec read

Raspberry Pi for research labs (3) battery pack

Raspberry Pi for research labs (2) Raspberry Pi for research labs (1) We used to power the Raspberry Pi using a USB cable connecting to a computer; to make the device more usable and portable, now we use a battery pack. It is about 20 dollars. With 4
Xu Cui
14 sec read

Raspberry Pi for research labs (2) Connecting an accelerometer

Raspberry Pi for research labs (3) Raspberry Pi for research labs (1) We recently used a smartphone to measure participants’ head motion during an NIRS experiment and got decent results. Smartphone is easy to use, but its size is relatively bul
Xu Cui
1 min read

Movie: blood flow increases in brain motor cortex during…

Ever wondered what happened to your brain when you tap your finger? See this movie: Link: http://youtu.be/KN3MPtXlOH8 In the above movie I used topo software (by Hitachi) to visualize the blood flow changes in the brain. The data was collected by Hit
Xu Cui
22 sec read

Excel tip: how to unhide the first column

When you hide column A, you may have assumed it’s very easy to unhide it later. It’s not true. Here is how you unhide column A: 1. Type “A1” in the cell selector box, press Enter 2. click “Format” in the cells tool
Xu Cui
11 sec read

An interesting gamble

The other day I was walking on a street, along which there are a lot of booths where people play games to gamble. I stopped in front of one booth. The host was warm and we started to talk. “How to play?”, I asked. “Well, simple.R
Xu Cui
1 min read

How to label each point in MatLab plot?

How to label each data point in a MatLab plot, like the following figure? MatLab code: x = ; y = x + rand(1,10); figure('color','w'); plot(x,y,'o'); a = '; b = num2str(a); c = cellstr(b); dx = 0.1; dy = 0.1; text(x+dx, y+dy, c); It also w
Xu Cui
18 sec read

SVM regression on time series, is there a lag?

It would be nice if we can predict the future. For example, give the following time series, can we predict the next point? Let’s use SVM regression, which is said to be powerful. We use the immediate past data point as the predictor. We train o
Xu Cui
1 min read