首页 > 编程知识 正文

Freesurfer matlab使用,在线使用数学建模matlab

时间:2023-05-05 11:01:36 阅读:239345 作者:1611

官方有一个相关说明,https://surfer.nmr.mgh.harvard.edu/fswiki/MatlabRuntime
https://web.stanford.edu/group/vista/cgi-bin/wiki/index.php/FreeSurfer
FreeSurfer in Matlab
In order for Matlab to have access to Freesurfer executables you must do two things:

Start matlab through a terminal.
Add the following lines to your matlab startup.m file.

fshome = getenv('FREESURFER_HOME'); fsmatlab = sprintf('%s/matlab',fshome); if (exist(fsmatlab) == 7) path(path,fsmatlab); end clear fshome fsmatlab; fsfasthome = getenv('FSFAST_HOME'); fsfasttoolbox = sprintf('%s/toolbox',fsfasthome); if (exist(fsfasttoolbox) == 7) path(path,fsfasttoolbox); end clear fsfasthome fsfasttoolbox;

我没有用这个。
matlab我习惯在windows用,我直接将
freesurfer/matlab/和freesurfer/fsfast/toolbox/两文件夹添加到matlab路径。

怎么查看电脑配置

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。