.. algorithm:: .. summary:: .. relatedalgorithms:: .. properties:: Description ----------- Creates a Workspace2D with X,Y, and E copied from an IMDHistoWorkspace. The MD workspace must have at most 2 non-integrated dimensions. Usage ----- **Example 1** .. testcode:: ExHasUB1 ws = CreateMDHistoWorkspace(SignalInput='1,2,3,4,5,6,7,8,9', ErrorInput='1,1,1,1,1,1,1,1,1', Dimensionality='2', Extents='-1,1,-1,1', NumberOfBins='3,3', Names='A,B', Units='U,T') print("{} is a {}".format(ws, ws.id())) wsOut=ConvertMDHistoToMatrixWorkspace(ws) print("{} is a {} with {} histograms and {} bins".format(wsOut, wsOut.id(), wsOut.getNumberHistograms(), wsOut.blocksize())) Output: .. testoutput:: ExHasUB1 ws is a MDHistoWorkspace wsOut is a Workspace2D with 3 histograms and 3 bins **Example 2** .. testcode:: ExHasUB2 ws = CreateMDHistoWorkspace(SignalInput='1,2,3', ErrorInput='1,1,1', Dimensionality='2', Extents='-1,1,-1,1', NumberOfBins='1,3', Names='A,B', Units='U,T') print("{} is a {}".format(ws, ws.id())) wsOut=ConvertMDHistoToMatrixWorkspace(ws) print("{} is a {} with {} histograms and {} bins".format(wsOut, wsOut.id(), wsOut.getNumberHistograms(), wsOut.blocksize())) Output: .. testoutput:: ExHasUB2 ws is a MDHistoWorkspace wsOut is a Workspace2D with 1 histograms and 3 bins .. categories:: .. sourcelink::