[FieldTrip] labels per grid point (Nadine)

Haiteng Jiang haiteng.jiang at gmail.com
Thu May 7 12:21:40 CEST 2015


Hi Nadine,
   Following up Tzvetan's response , you get the label for every grid by
doing this :

clear all;
clc;
% read the atlas
atlas =
ft_read_atlas('/home/common/matlab/fieldtrip/template/atlas/aal/ROI_MNI_V4.nii');

load('standard_sourcemodel3d10mm.mat'); % mni template source model

% and call ft_sourceinterpolate:
cfg = [];
cfg.interpmethod = 'nearest';
cfg.parameter = 'tissue';
sourcemodel2 = ft_sourceinterpolate(cfg, atlas, sourcemodel);

% replace NAN with 0 ;
sourcemodel2.tissue(isnan(sourcemodel2.tissue)) =0;

ids  =find(sourcemodel2.tissue);          %  all interpolate regions

id     =sourcemodel2.tissue(ids); %  all interpolate regions index

ROI     =atlas.tissuelabel(id);

if you want to find Occipital for instance , you  just call a few more
lines code :

occid   =find(strncmpi(ROI,'Occipital',9));  %  indice

OCC     =ROI(occid);  % label

      Hope this helps,

       Hatieng



> Message: 6
> Date: Wed, 6 May 2015 15:51:59 +0200
> From: Nadine <nadine.dijkstra92 at gmail.com>
> To: FieldTrip discussion list <fieldtrip at science.ru.nl>
> Subject: Re: [FieldTrip] labels per grid point
> Message-ID: <CFA407AD-66C3-4E7C-8CFE-4630047B8CB5 at gmail.com>
> Content-Type: text/plain; charset=iso-8859-1
>
> Thanks, the link works fine for me!
> I am not sure if this solves the problem however, because it only gives
> the labels for some points in the plot, while I want to have the label for
> every individual grid point in a list so that I can see which grid points
> belong to the same area etc. However, this might be a good place to start.
> Thanks anyway!
>
> Best,
> Nadine
>
> On 06 May 2015, at 15:07, J?rn M. Horschig <jorn at artinis.com> wrote:
>
> > haha ok, I give up, the link still appears to be broken - please copy the
> > link together yourself or click on 'Plotting sources of oscillatory
> > gamma-band activity' on the navigation tab to the left and look for the
> > second exercise in that section.
> >
> >
> > --
> >
> > J?rn M. Horschig, Software Engineer
> > Artinis Medical Systems  |  +31 481 350 980
> >
> >> -----Original Message-----
> >> From: fieldtrip-bounces at science.ru.nl [mailto:fieldtrip-
> >> bounces at science.ru.nl] On Behalf Of J?rn M. Horschig
> >> Sent: Wednesday, May 6, 2015 2:50 PM
> >> To: 'FieldTrip discussion list'
> >> Subject: Re: [FieldTrip] labels per grid point
> >>
> >> the correct link is:
> >> http://www.fieldtriptoolbox.org/tutorial/beamformingextended#plotting_s
> >> ource
> >> s_of_oscillatory_gamma-band_activity
> >> not sure why there was a line break introduced...
> >>
> >>
> >> --
> >>
> >> J?rn M. Horschig, Software Engineer
> >> Artinis Medical Systems  |  +31 481 350 980
> >>
> >>> -----Original Message-----
> >>> From: fieldtrip-bounces at science.ru.nl [mailto:fieldtrip-
> >>> bounces at science.ru.nl] On Behalf Of J?rn M. Horschig
> >>> Sent: Wednesday, May 6, 2015 2:43 PM
> >>> To: 'FieldTrip discussion list'
> >>> Subject: Re: [FieldTrip] labels per grid point
> >>>
> >>> Hi Nadine,
> >>>
> >>> does the second exercise in this section help (i.e. defining a lookup
> >> atlas for
> >>> source plotting):
> >>>
> >> http://www.fieldtriptoolbox.org/tutorial/beamformingextended#plotting_
> >>> s
> >>> ource
> >>> s_of_oscillatory_gamma-band_activity
> >>> ?
> >>>
> >>> Best,
> >>> J?rn
> >>>
> >>>
> >>> --
> >>>
> >>> J?rn M. Horschig, Software Engineer
> >>> Artinis Medical Systems  |  +31 481 350 980
> >>>
> >>>> -----Original Message-----
> >>>> From: fieldtrip-bounces at science.ru.nl [mailto:fieldtrip-
> >>>> bounces at science.ru.nl] On Behalf Of Nadine
> >>>> Sent: Wednesday, May 6, 2015 2:21 PM
> >>>> To: fieldtrip at science.ru.nl
> >>>> Subject: [FieldTrip] labels per grid point
> >>>>
> >>>> Dear Fieldtrip Users,
> >>>>
> >>>> I am trying to get anatomical labels for individual source grid
> >>>> points. I
> >>> can only
> >>>> find how to parcellate the grid points to get an averaged value of
> >>>> sources
> >>> for
> >>>> certain parcellations (e.g. Brodmann areas). But I would like to get
> >>>> an anatomical label per grid point, so that I can see which grid
> >>>> points
> >>> belong to
> >>>> which area. Does anybody have any solution for this?
> >>>>
> >>>> Thanks in advance for your help,
> >>>> Nadine
> >>>>
> >>>> _______________________________________________
> >>>> fieldtrip mailing list
> >>>> fieldtrip at donders.ru.nl
> >>>> http://mailman.science.ru.nl/mailman/listinfo/fieldtrip
> >>>
> >>>
> >>> _______________________________________________
> >>> fieldtrip mailing list
> >>> fieldtrip at donders.ru.nl
> >>> http://mailman.science.ru.nl/mailman/listinfo/fieldtrip
> >>
> >>
> >> _______________________________________________
> >> fieldtrip mailing list
> >> fieldtrip at donders.ru.nl
> >> http://mailman.science.ru.nl/mailman/listinfo/fieldtrip
> >
> >
> > _______________________________________________
> > fieldtrip mailing list
> > fieldtrip at donders.ru.nl
> > http://mailman.science.ru.nl/mailman/listinfo/fieldtrip
>
>
>
>
> ------------------------------
>
> Message: 7
> Date: Thu, 7 May 2015 09:36:34 +0200
> From: Nadine <nadine.dijkstra92 at gmail.com>
> To: FieldTrip discussion list <fieldtrip at science.ru.nl>
> Subject: Re: [FieldTrip] labels per grid point
> Message-ID: <306CCF9F-01AC-4036-8B14-C4FFC99AA54E at gmail.com>
> Content-Type: text/plain; charset=us-ascii
>
> Hi Tzvetan,
>
> Yes, thank you, this is perfect!
>
> Best,
> Nadine
> On 06 May 2015, at 14:37, Tzvetan Popov <tzvetan.popov at uni-konstanz.de>
> wrote:
>
> > Hi Nadine,
> >
> > maybe this is what you need?
> >
> http://www.fieldtriptoolbox.org/faq/how_can_i_map_source_locations_between_two_different_representations
> >
> > best
> > tzvetan
> >
> >> Dear Fieldtrip Users,
> >>
> >> I am trying to get anatomical labels for individual source grid points.
> I can only find how to parcellate the grid points to get an averaged value
> of sources for certain parcellations (e.g. Brodmann areas). But I would
> like to get an anatomical label per grid point, so that I can see which
> grid points belong to which area. Does anybody have any solution for this?
> >>
> >> Thanks in advance for your help,
> >> Nadine
> >>
> >> _______________________________________________
> >> fieldtrip mailing list
> >> fieldtrip at donders.ru.nl
> >> http://mailman.science.ru.nl/mailman/listinfo/fieldtrip
> >
> >
> > _______________________________________________
> > fieldtrip mailing list
> > fieldtrip at donders.ru.nl
> > http://mailman.science.ru.nl/mailman/listinfo/fieldtrip
>
>
>
>
> ------------------------------
>
> Message: 8
> Date: Thu, 7 May 2015 10:21:19 +0200
> From: H?l?ne Guiraud <guiraudh at gmail.com>
> To: FieldTrip discussion list <fieldtrip at science.ru.nl>
> Subject: Re: [FieldTrip] re template for children
> Message-ID:
>         <
> CAJ16KS8BwyAttHC2E23tsdisvjE+Y_T5NAjpMm4F8--0H6HN8g at mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> Hi Till and John,
>
> Thank you, this is perfect!
>
> Best regards,
> H?l?ne
>
> 2015-04-30 14:12 GMT+02:00 RICHARDS, JOHN <RICHARDS at mailbox.sc.edu>:
>
> > We have a template for children?actually have for infants from 2 weeks
> > through adults at 89 years.  We also have average electrode positions for
> > EGI sensor nets (GSN128, HGSN128) and the 10-10 system; and segmented
> > priors, stereotaxic atlases, and segmented heads (BEM, FEM).  I also have
> > been using this recently with FT for infants and child/adolescent/adult
> > ages.
> >
> > WWW site: http://jerlab.psych.sc.edu/NeurodevelopmentalMRIDatabase/
> > Fro www site: This is a database of average MRIs and associated MRI
> > volumes for developmental MRI work. It consists of average MRI templates,
> > segmented partial volume estimate volumes for GM, WM, T2W-derived CSF
> > (Description
> > <
> http://jerlab.psych.sc.edu/NeurodevelopmentalMRIDatabase/Description.html
> > >
> > ). The database is separated into head-based and brain-based averages.
> The
> > data are separated by ages in months, years, 6-month, or 5-year intervals
> > (Ages and Templates
> > <
> >
> http://jerlab.psych.sc.edu/NeurodevelopmentalMRIDatabase/agestemplates.htm
> > l>). The templates are grouped into first year (2 weeks through 12
> > months), early childhood (15 months through 4 years), childhood (4 years
> > through 10 years), adolescence (10.5 years through 17.5 years) and adults
> > (18 years through 89 years).
> > Tools for cortical source analysis of EEG and ERP are provided.  These
> > tools are based on the average MRI templates, segmenting, and atlases.
> >
> > Also see my www site, jerlab.psych.sc.edu for publications describing
> > this.  We have a recent chapter that has a good description of the issues
> > behind the database (with Wanze Xie). We have a paper accepted at
> > Neuroimage for their upcoming ?Data Sharing? issue (with Carmen Sanchez,
> > Michelle Phillips-Meek, and Wanze Xie).
> >
> > John
> >
> >
> > ***********************************************
> > John E. Richards Carolina Distinguished Professor
> > Department of Psychology
> > University of South Carolina
> > Columbia, SC  29208
> > Dept Phone: 803 777 2079
> > Fax: 803 777 9558
> > Email: richards-john at sc.edu
> > HTTP: jerlab.psych.sc.edu
> > ***********************************************
> >
> >
> >
> >
> >
> >
> >
> >
> > On 4/30/15, 6:00 AM, "fieldtrip-request at science.ru.nl"
> > <fieldtrip-request at science.ru.nl> wrote:
> >
> > >Send fieldtrip mailing list submissions to
> > >       fieldtrip at science.ru.nl
> > >
> > >To subscribe or unsubscribe via the World Wide Web, visit
> > >       http://mailman.science.ru.nl/mailman/listinfo/fieldtrip
> > >or, via email, send a message with subject or body 'help' to
> > >       fieldtrip-request at science.ru.nl
> > >
> > >You can reach the person managing the list at
> > >       fieldtrip-owner at science.ru.nl
> > >
> > >When replying, please edit your Subject line so it is more specific
> > >than "Re: Contents of fieldtrip digest..."
> > >
> > >
> > >Today's Topics:
> > >
> > >   1. Search for a template children. (H?l?ne Guiraud)
> > >   2. Re: Search for a template children. (Till Schneider)
> > >   3. ICBM 152 templates in FT (Keyvan Mahjoory)
> > >
> > >
> > >----------------------------------------------------------------------
> > >
> > >Message: 1
> > >Date: Wed, 29 Apr 2015 14:45:56 +0200
> > >From: H?l?ne Guiraud <guiraudh at gmail.com>
> > >To: fieldtrip at science.ru.nl
> > >Subject: [FieldTrip] Search for a template children.
> > >Message-ID:
> > >       <
> > CAJ16KS_S7ednTeE2MgaLasRaWD4GK+0ChX0S+nYZzU_-ypdh4w at mail.gmail.com>
> > >Content-Type: text/plain; charset="utf-8"
> > >
> > >Dear community,
> > >
> > >My name is H?l?ne Guiraud and i'm working in DDL lab in Lyon (France) on
> > >speech perception in children using MEG.
> > >The children involved in the study don't pass MRI. We want to achieve
> > >source reconstruction from a template. However I can't find a template
> > >corresponding to the anatomy of a child (8-12 years).
> > >Can someone tell me if there are template children and where I can find
> > >them?
> > >
> > >Best,
> > >
> > >H?l?ne Guiraud
> > >-------------- next part --------------
> > >An HTML attachment was scrubbed...
> > >URL:
> > ><
> >
> http://mailman.science.ru.nl/pipermail/fieldtrip/attachments/20150429/03e
> > >9b53e/attachment-0001.html>
> > >
> > >------------------------------
> > >
> > >Message: 2
> > >Date: Wed, 29 Apr 2015 15:53:13 +0200
> > >From: Till Schneider <t.schneider at uke.uni-hamburg.de>
> > >To: FieldTrip discussion list <fieldtrip at science.ru.nl>
> > >Subject: Re: [FieldTrip] Search for a template children.
> > >Message-ID: <5540E249.3000200 at uke.uni-hamburg.de>
> > >Content-Type: text/plain; charset="windows-1252"; Format="flowed"
> > >
> > >Dear Helene,
> > >
> > >McGill University provides MNI brains for different age groups between
> > >4.5y to 18y.
> > >http://www.bic.mni.mcgill.ca/ServicesAtlases/NIHPD-obj1
> > >You will probably find the template brain you are searching for in this
> > >database.
> > >
> > >Best regards,
> > >Till
> > >
> > >--
> > >
> > >Till Schneider, PhD
> > >
> > >Cognitive and Clinical Neurophysiology Group
> > >Dept. of Neurophysiology and Pathophysiology
> > >University Medical Center Hamburg-Eppendorf
> > >Martinistr. 52
> > >20246 Hamburg
> > >Germany
> > >
> > >phone +49-40-7410-53188
> > >fax +49-40-7410-57126
> > >www.uke.de/neurophysiologie
> > >
> > >
> > >
> > >Am 29.04.15 um 14:45 schrieb H?l?ne Guiraud:
> > >> Dear community,
> > >>
> > >> My name is H?l?ne Guiraud and i'm working in DDL lab in Lyon (France)
> > >> on speech perception in children using MEG.
> > >> The children involved in the study don't pass MRI. We want to achieve
> > >> source reconstruction from a template. However I can't find a template
> > >> corresponding to the anatomy of a child (8-12 years).
> > >> Can someone tell me if there are template children and where I can
> > >> find them?
> > >>
> > >> Best,
> > >>
> > >> H?l?ne Guiraud
> > >>
> > >>
> > >> _______________________________________________
> > >> fieldtrip mailing list
> > >> fieldtrip at donders.ru.nl
> > >> http://mailman.science.ru.nl/mailman/listinfo/fieldtrip
> > >
> > >
> > >--
> > >
> > >_____________________________________________________________________
> > >
> > >Universit?tsklinikum Hamburg-Eppendorf; K?rperschaft des ?ffentlichen
> > >Rechts; Gerichtsstand: Hamburg | www.uke.de
> > >Vorstandsmitglieder: Prof. Dr. Burkhard G?ke (Vorsitzender), Prof. Dr.
> > >Dr. Uwe Koch-Gromus, Joachim Pr?l?, Rainer Schoppik
> > >_____________________________________________________________________
> > >
> > >SAVE PAPER - THINK BEFORE PRINTING
> > >-------------- next part --------------
> > >An HTML attachment was scrubbed...
> > >URL:
> > ><
> >
> http://mailman.science.ru.nl/pipermail/fieldtrip/attachments/20150429/c4e
> > >44937/attachment-0001.html>
> > >
> > >------------------------------
> > >
> > >Message: 3
> > >Date: Wed, 29 Apr 2015 16:25:35 +0200
> > >From: Keyvan Mahjoory <mahjoory86 at gmail.com>
> > >To: FieldTrip discussion list <fieldtrip at science.ru.nl>
> > >Subject: [FieldTrip] ICBM 152 templates in FT
> > >Message-ID:
> > >       <CA+qK++u51A-Z9XRP+MfckZJtG7d47oLtALbpEo=
> > UJp6-+4+7fA at mail.gmail.com>
> > >Content-Type: text/plain; charset="iso-8859-1"
> > >
> > >Dear Fieldtrip Users,
> > >
> > >I perform source analysis in Fieldtrip with a template head model (
> > >standard_bem <http://www.fieldtriptoolbox.org/template/headmodel>) and
> a
> > >template source model (cortex_5124.surf.gii
> > ><http://www.fieldtriptoolbox.org/template/sourcemodel>) to constarin
> > >estimated sources  on cortex. These templates are based on Colin27, But
> I
> > >prefere to use the template ICBM152 instead.
> > >Does FT include ICBM template? I mean templates for both head model and
> > >cortical surfe.
> > >
> > >Many Thanks in advance,
> > >Keyvan
> > >-------------- next part --------------
> > >An HTML attachment was scrubbed...
> > >URL:
> > ><
> >
> http://mailman.science.ru.nl/pipermail/fieldtrip/attachments/20150429/992
> > >9daf3/attachment-0001.html>
> > >
> > >------------------------------
> > >
> > >_______________________________________________
> > >fieldtrip mailing list
> > >fieldtrip at donders.ru.nl
> > >http://mailman.science.ru.nl/mailman/listinfo/fieldtrip
> > >
> > >End of fieldtrip Digest, Vol 53, Issue 23
> > >*****************************************
> >
> >
> > _______________________________________________
> > fieldtrip mailing list
> > fieldtrip at donders.ru.nl
> > http://mailman.science.ru.nl/mailman/listinfo/fieldtrip
> >
>
>
>
> --
> H?l?ne Guiraud
> Doctorante
> Universit? Lyon 2
> Laboratoire Dynamique Du Langage
> CNRS, UMR 5596
> Tel : 04 72 72 65 34
> guiraudh at gmail.com <Helene.Guiraud at univ-lyon2.fr>
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://mailman.science.ru.nl/pipermail/fieldtrip/attachments/20150507/0bd0dea8/attachment-0001.html
> >
>
> ------------------------------
>
> Message: 9
> Date: Thu, 7 May 2015 08:29:39 +0000
> From: "Sander, Myriam" <sander at mpib-berlin.mpg.de>
> To: FieldTrip discussion list ?[fieldtrip at science.ru.nl]?
>         <fieldtrip at science.ru.nl>
> Subject: [FieldTrip] Vacant Predoctoral Position in Lifespan
>         Psychology at the MPI for Human Development in Berlin, Germany
> Message-ID:
>         <
> D12CFACF574CEA4498D72B949FF5631C9B20628E at MaxMail04.mpib-berlin.mpg.de>
>
> Content-Type: text/plain; charset="cp1256"
>
> *********************************************************
>
> PREDOCTORAL POSITION: CENTER FOR LIFESPAN PSYCHOLOGY, MPI BERLIN
>
> The new MINERVA research group headed by Dr. Myriam Sander at the Max
> Planck Institute for Human Development, Center for Lifespan Psychology
> (Director: Prof. Dr. Ulman Lindenberger), is seeking applications for a
>
> PREDOCTORAL POSITION
>
> The doctoral contract will last for 3 years. The position is available
> from October 1, 2015 or later.
>
> Job Description: Future research of the new MINERVA research group (PI:
> Dr. Myriam Sander) will use a multi-modal imaging approach (EEG with a
> focus on oscillatory measures in combination with structural and functional
> MRI) to uncover lifespan differences in the interplay between sensory
> (visual and auditory) and cognitive abilities influencing memory
> performance. The MINERVA research group is part of the project ?Cognitive
> and Neural Dynamics of Memory Across the Lifespan (CONMEM)? which
> investigates lifespan changes in the interplay between associative and
> strategic components of memory functioning on neural and cognitive levels,
> with a focus on working and episodic memory (see Sander, et al., Neurosci.
> Biobehav. Rev., 2012; Shing, et al., Neurosci. Biobehav. Rev., 2010). The
> successful predoctoral fellow will plan and conduct empirical studies in
> this domain, analyze the behavioral, EEG, and MRI data, and prepare
> scientific manuscripts for publication.
>
> For further information, please contact: Dr. Myriam Sander (
> sander at mpib-berlin.mpg.de)
>
> Requirements: A successful applicant needs to hold (or expect by summer
> 2015) a diploma/master degree in psychology, cognitive neuroscience, or
> related fields. Applicants should have experience with conducting
> experimental research, knowledge in neuroimaging methods (EEG and/or MRI),
> and a solid background in at least one programming language (preferably
> Matlab or R). In addition, the ability to work independently as well as a
> high proficiency of the English language is required. Experience with
> age-comparative studies is an advantage.
>
> The Max Planck Society is interested in increasing the number of women on
> its scientific staff. We strongly encourage applications from women and
> members of minority groups. In addition, the Max Planck Society is
> committed to employing more handicapped individuals and encourages them to
> apply.
>
> To apply, please send (as ONE FILE and via email only) a statement of
> research interests, a CV, a copy of relevant certificates, (p)reprints of
> publications, and a list of two references to Dr. Myriam Sander, MPI for
> Human Development, Lentzeallee 94, 14195 Berlin (sander at mpib-berlin.mpg.de)
> preferably by June 30th, 2015. Later applications will be considered until
> the position is filled.
>
> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
>
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://mailman.science.ru.nl/pipermail/fieldtrip/attachments/20150507/0579250d/attachment-0001.html
> >
>
> ------------------------------
>
> Message: 10
> Date: Thu, 7 May 2015 11:11:54 +0200
> From: "Hamza Fawzi Altakroury (Alumni)" <hamzaf at sabanciuniv.edu>
> To: FieldTrip discussion list <fieldtrip at science.ru.nl>
> Subject: [FieldTrip] Vgrid
> Message-ID:
>         <
> CADB5qVBgnCciEmuwJ8ZR3MPRrEuHeWdysTQWek9+aTabP6-GMg at mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> Hello,
>
> I got the following error when I run these lines: (found in
> http://www.fieldtriptoolbox.org/development/simbio)
>
> cfg        = [];
> cfg.shift  = 0.3;
> cfg.method = 'hexahedral';
> mesh = ft_prepare_mesh(cfg,segmentedmri);
>
> Error using vgrid (line 16)
> the vgrid executable is not available for your platform, it was expected to
> be
> located at
> ***\external\vgrid\bin\pcwin64\vgrid.exe
>
> I don't have a folder called pcwin64! I have only glnx86 (empty folder)
> glnxa64 and maci64 in   ***\external\vgrid\bin\
>
> I also downloaded a newer version of fieldtrip, but I did not find it!
>
> >From where I can get vgrid.exe?
>
> Thank you
>
>
> --
> Hamza Fawzi Altakroury
> Graduate student - MA
> Faculty of Engineering and Natural Sciences
> Sabanc? University
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://mailman.science.ru.nl/pipermail/fieldtrip/attachments/20150507/793650e7/attachment-0001.html
> >
>
> ------------------------------
>
> Message: 11
> Date: Thu, 07 May 2015 11:40:17 +0200
> From: Johannes Vorwerk <j.vorw01 at gmail.com>
> To: fieldtrip at science.ru.nl
> Subject: Re: [FieldTrip] Vgrid
> Message-ID: <1430991617.11932.23.camel at biomag43>
> Content-Type: text/plain; charset="utf-8"
>
> Hi,
>
> vgrid should no longer be needed in recent fieldtrip-versions. It was
> replaced by a fully matlab-based function (prepare_mesh_hexahedral),
> that should now also work under windows. A vgrid.exe never existed, it
> was only available for mac and linux. Did you try updating your
> fieldtrip-version to a recent release?
>
> Best,
>     Johannes
>
> Am Donnerstag, den 07.05.2015, 11:11 +0200 schrieb Hamza Fawzi
> Altakroury (Alumni):
> > Hello,
> >
> >
> >
> > I got the following error when I run these lines: (found in
> > http://www.fieldtriptoolbox.org/development/simbio)
> >
> > cfg        = [];
> > cfg.shift  = 0.3;
> > cfg.method = 'hexahedral';
> > mesh = ft_prepare_mesh(cfg,segmentedmri);
> >
> >
> >
> > Error using vgrid (line 16)
> > the vgrid executable is not available for your platform, it was
> > expected to be
> > located at
> > ***\external\vgrid\bin\pcwin64\vgrid.exe
> >
> >
> >
> > I don't have a folder called pcwin64! I have only glnx86 (empty
> > folder) glnxa64 and maci64 in   ***\external\vgrid\bin\
> >
> >
> >
> > I also downloaded a newer version of fieldtrip, but I did not find it!
> >
> >
> > From where I can get vgrid.exe?
> >
> >
> > Thank you
> >
> >
> >
> > --
> >
> > Hamza Fawzi Altakroury
> > Graduate student - MA
> > Faculty of Engineering and Natural Sciences
> > Sabanc? University
> >
> > _______________________________________________
> > fieldtrip mailing list
> > fieldtrip at donders.ru.nl
> > http://mailman.science.ru.nl/mailman/listinfo/fieldtrip
>
>
> --
>  Dipl.-Math. Johannes Vorwerk
>  e-mail: j.vorwerk at uni-muenster.de
>
>  Workgroup Methods in Bioelectromagnetism, PD. Dr. Carsten Wolters
>  Institute for Biomagnetism and Biosignalanalysis, University of Muenster
>  www: http://campus.uni-muenster.de/index.php?id=919&L=1
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://mailman.science.ru.nl/pipermail/fieldtrip/attachments/20150507/6c43fe26/attachment-0001.html
> >
>
> ------------------------------
>
> _______________________________________________
> fieldtrip mailing list
> fieldtrip at donders.ru.nl
> http://mailman.science.ru.nl/mailman/listinfo/fieldtrip
>
> End of fieldtrip Digest, Vol 54, Issue 5
> ****************************************
>



-- 
Haiteng Jiang
PhD candidate
Donders Institute for Brain, Cognition and Behaviour
Neuronal Oscillations Group
Computational Cognitive Neuroscience Lab
https://sites.google.com/site/haitengjiang/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.science.ru.nl/pipermail/fieldtrip/attachments/20150507/7c585966/attachment-0001.html>


More information about the fieldtrip mailing list