GOAL: visualize simulation output (z) and that time it takes to perform said simulation
CONTEXT:
- MATLAB: An array of simulation results can be represented as a matrix f(X,Y).
- The simulations are driven by two different independent variables (X,Y)
- Simulation output Z is visualized below in the form of surface plot.
- The simulation computation time for each simulation is to be visualized with Z.
483 (=21X23) simulations are visualized:
This is acutally a surface plot, whose command is: surfc(nStations,nParameter,data)
. The 3D shape is a cliff: the valley is blue (Z=1) and the plateau is yellow (Z=12). I believe the 3D shape and its eye point does not affect the question.
While looking at Z, it is desirable to be able to see the simulation computuation time of each of the annotated simulations. In MATLAB parlance:
[simulationTime z] = f(x,y)
Any suggestions to aid in the visualization of the simulationTime with simulation output (z)?