#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Main structure of STL
Tentative proposal by EA
Still WIP, I try in particular to identify the minimum parameters which are
necessary.
I ork only with single channel maps here, need to be extended to multi-channel
ones.
"""
###############################################################################
###############################################################################
[docs]
def synth_from_map(
data_target,
mode="1to1",
N_new=None,
J=None,
L=None,
WType=None,
SC="ScatCov",
):
"""
Perform a synthesis from a target map, or an ensemble of target map.
The data_target needs to be a stl_data object, of shape (Nb,Nc,N).
The synthes
"""
return None
###############################################################################
###############################################################################
[docs]
def synth_from_stats(st_target, mode="1to1", N_new=None):
return None
###############################################################################
###############################################################################