MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ is_same_size()

static bool MayaFlux::is_same_size ( const std::vector< std::span< double > > &  data)
static

Definition at line 12 of file Yantra.cpp.

13{
14 if (data.empty())
15 return true;
16
17 const auto expected_size = data.front().size();
18 return std::ranges::all_of(data,
19 [&expected_size](const auto& v) { return v.size() == expected_size; });
20}

Referenced by mean_combined(), mix(), mix_with_gains(), rms_combined(), and std_dev_combined().

+ Here is the caller graph for this function: