Container for mixed surface and volume source estimates. Parameters ---------- data : array of shape (n_dipoles, n_times) | tuple, shape (2,) The data in source space. The data can either be a single array or a tuple with two arrays: "kernel" shape (n_vertices, n_sensors
| 2944 | |
| 2945 | @fill_doc |
| 2946 | class MixedSourceEstimate(_BaseMixedSourceEstimate): |
| 2947 | """Container for mixed surface and volume source estimates. |
| 2948 | |
| 2949 | Parameters |
| 2950 | ---------- |
| 2951 | data : array of shape (n_dipoles, n_times) | tuple, shape (2,) |
| 2952 | The data in source space. The data can either be a single array or |
| 2953 | a tuple with two arrays: "kernel" shape (n_vertices, n_sensors) and |
| 2954 | "sens_data" shape (n_sensors, n_times). In this case, the source |
| 2955 | space data corresponds to ``np.dot(kernel, sens_data)``. |
| 2956 | vertices : list of array |
| 2957 | Vertex numbers corresponding to the data. The list contains arrays |
| 2958 | with one array per source space. |
| 2959 | %(tmin)s |
| 2960 | %(tstep)s |
| 2961 | %(subject_optional)s |
| 2962 | %(verbose)s |
| 2963 | |
| 2964 | Attributes |
| 2965 | ---------- |
| 2966 | subject : str | None |
| 2967 | The subject name. |
| 2968 | times : array of shape (n_times,) |
| 2969 | The time vector. |
| 2970 | vertices : list of array |
| 2971 | Vertex numbers corresponding to the data. The list contains arrays |
| 2972 | with one array per source space. |
| 2973 | data : array of shape (n_dipoles, n_times) |
| 2974 | The data in source space. |
| 2975 | shape : tuple |
| 2976 | The shape of the data. A tuple of int (n_dipoles, n_times). |
| 2977 | |
| 2978 | See Also |
| 2979 | -------- |
| 2980 | SourceEstimate : A container for surface source estimates. |
| 2981 | VectorSourceEstimate : A container for vector surface source estimates. |
| 2982 | VolSourceEstimate : A container for volume source estimates. |
| 2983 | VolVectorSourceEstimate : A container for Volume vector source estimates. |
| 2984 | |
| 2985 | Notes |
| 2986 | ----- |
| 2987 | .. versionadded:: 0.9.0 |
| 2988 | """ |
| 2989 | |
| 2990 | |
| 2991 | @fill_doc |
no outgoing calls