From fb44f7d5781dfa430774321bec73481eb56e725e Mon Sep 17 00:00:00 2001 From: Nathan Chordas-Ewell Date: Sun, 22 Feb 2026 16:40:46 -0500 Subject: [PATCH] Add data format description to README Added section on data format for matrices. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index c9ab2f4..185c17a 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,9 @@ On the first call, the function parses the CSV and saves a `.mat` file in the sa | `theta` | `1 × numTheta` | Theta angles (degrees) | | `freqs` | `1 × numFreqs` | Frequencies (Hz) | +### Data Format +All data matrices (`D_total`, `D_phi`, `D_theta`) are formatted as a `numPhi × numTheta × numFreqs` array. Therefore, to get a pattern at a particular frequency, all that is required is `D_atFreqToPlot = D_total(:, :, freqs == freq_toPlot)`. + ### Input Arguments | Argument | Description |