colour.msds_ones

colour.msds_ones(labels, shape=SpectralShape(360, 780, 1))[source]

Returns the multi-spectral distributionss with given labels and given spectral shape filled with ones.

Parameters
Returns

Ones filled multi-spectral distributions.

Return type

MultiSpectralDistributions

Notes

Examples

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