colour.msds_zeros#

colour.msds_zeros(labels: Sequence, shape: SpectralShape = SPECTRAL_SHAPE_DEFAULT, **kwargs: Any) MultiSpectralDistributions[source]#

Return the multi-spectral distributionss with given labels and given spectral shape filled with zeros.

Parameters:
Returns:

Zeros filled multi-spectral distributions.

Return type:

colour.MultiSpectralDistributions

Notes

Examples

>>> msds = msds_zeros(labels=["a", "b", "c"])
>>> msds.shape
SpectralShape(360.0, 780.0, 1.0)
>>> msds[400]
array([ 0.,  0.,  0.])
>>> msds.labels  
['a', 'b', 'c']