Container for vector surface source estimates. For each vertex, the magnitude of the current is defined in the X, Y and Z directions. Parameters ---------- data : array of shape (n_dipoles, 3, n_times) The data in source space. Each dipole contains three vectors that
| 2828 | |
| 2829 | @fill_doc |
| 2830 | class VectorSourceEstimate(_BaseVectorSourceEstimate, _BaseSurfaceSourceEstimate): |
| 2831 | """Container for vector surface source estimates. |
| 2832 | |
| 2833 | For each vertex, the magnitude of the current is defined in the X, Y and Z |
| 2834 | directions. |
| 2835 | |
| 2836 | Parameters |
| 2837 | ---------- |
| 2838 | data : array of shape (n_dipoles, 3, n_times) |
| 2839 | The data in source space. Each dipole contains three vectors that |
| 2840 | denote the dipole strength in X, Y and Z directions over time. |
| 2841 | vertices : list of array, shape (2,) |
| 2842 | Vertex numbers corresponding to the data. The first element of the list |
| 2843 | contains vertices of left hemisphere and the second element contains |
| 2844 | vertices of right hemisphere. |
| 2845 | %(tmin)s |
| 2846 | %(tstep)s |
| 2847 | %(subject_optional)s |
| 2848 | %(verbose)s |
| 2849 | |
| 2850 | Attributes |
| 2851 | ---------- |
| 2852 | subject : str | None |
| 2853 | The subject name. |
| 2854 | times : array of shape (n_times,) |
| 2855 | The time vector. |
| 2856 | shape : tuple |
| 2857 | The shape of the data. A tuple of int (n_dipoles, n_times). |
| 2858 | |
| 2859 | See Also |
| 2860 | -------- |
| 2861 | SourceEstimate : A container for surface source estimates. |
| 2862 | VolSourceEstimate : A container for volume source estimates. |
| 2863 | MixedSourceEstimate : A container for mixed surface + volume source |
| 2864 | estimates. |
| 2865 | |
| 2866 | Notes |
| 2867 | ----- |
| 2868 | .. versionadded:: 0.15 |
| 2869 | """ |
| 2870 | |
| 2871 | _scalar_class = SourceEstimate |
| 2872 | |
| 2873 | |
| 2874 | ############################################################################### |
no outgoing calls