背景 最近处理行为学数据和fMRI数据,主要使用MATLAB.有一些常用的代码被自己重复使用,所以在此记录,以便于随时调取使用. 1.PVT原生mat文件→txt文件 遇到在处理一些被试的PVT数据时,有一些数据被存为原生的mat文件.因此需要使用以下代码得到txt文件. close all; clear all; clc; filename = [01,02,03,04,05,06,07,08,09,10,11,12]; for m = 1:12 if m < 10 fid=fopen(['0
贝塞尔曲线绘图方法: %Program 3.7 Freehand Draw Program Using Bezier Splines %Click in Matlab figure window to locate first point, and click % three more times to specify 2 control points and the next % spline point. Continue with groups of 3 points to add mor