How do I link multiple scalar sources together into a single vector?
I have several stream gages, some with historical data, some that needs to be simulated. The data that I want to pass into the vector varies by gage.
I have a set of array labels corresponding to the complete list of stream gages. I have a vector that uses those gages as Row Labels.
What is the function syntax to define what variable is connected to what element of the vector. In other programming languages it would look like:
Array Labels: Gage_1, Gage_2, Gage_3
Gage_1 uses observed data stored in ObsData[Gage_1]
Gage_2 uses observed data stored in ObsData[Gage_2]
Gage_3 uses simulated using a function Gage_3_Sim
Intuitively, I'd expect the equation to look like this, but this doesn't work.
[ObsData[Gage_1], ObsData[Gage_2], Gage_3_Sim]
I'm sure this is a simple syntax issue, but I couldn't find the answer easily.
Thanks!
Comments
2 comments