function [x,M] = spm_x_mfm(P) % initialises a state structure for a mean field model % FORMAT [x,M] = spm_x_mfm(P) % % P - parameter structure (encoding extrinsic connections) % M - model structure % % x - states and covariances % M - model structure % % x{1}(i,j,k) - k-th state of i-th source in j-th population % x{2}(i,j,k,l) - covariance of i-th and j-th state (k-th source in l-th % population % % population: 1 - excitatory spiny stellate cells (input cells) % 2 - inhibitory interneurons % 3 - excitatory pyramidal cells (output cells) % % state: 1 V - voltage % 2 gE - conductance (excitatory) % 3 gI - conductance (inhibitory) % 4 gN - conductance (NMDA) %__________________________________________________________________________ % Copyright (C) 2008 Wellcome Trust Centre for Neuroimaging % Karl Friston % $Id: spm_x_nmda.m 5299 2013-03-04 18:19:35Z guillaume $ % dimensions %-------------------------------------------------------------------------- ns = size(P.A{1},1); % number of sources np = 3; % number of populations % create (initialise voltage at -70mV) %-------------------------------------------------------------------------- x{1} = zeros(ns,np,4) + 1/8; x{1}(:,:,1) = -70; % steady-state solution %========================================================================== % create MFM model %-------------------------------------------------------------------------- M.g = {}; M.f = 'spm_fx_nmda'; M.x = x; M.pE = P; M.n = length(spm_vec(x)); M.u = sparse(ns,1); % solve for fixed point %-------------------------------------------------------------------------- x = spm_dcm_neural_x(P,M);