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

◆ get_previous_buffer() [1/2]

std::vector< double > & MayaFlux::Buffers::FeedbackBuffer::get_previous_buffer ( )
inline

Gets mutable access to the previous state vector.

Returns
Reference to the vector containing previous state data

This provides direct access to the system's previous state, which can be useful for advanced algorithms or analysis. Use with caution as modifying this directly can affect the system's evolution.

Definition at line 68 of file FeedbackBuffer.hpp.

68{ return m_previous_buffer; }
std::vector< double > m_previous_buffer
Storage for the previous system state.