MayaFlux 0.3.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 14 of file Yantra.cpp.

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

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

+ Here is the caller graph for this function: