ClearAll["Global`*"]
doesn't clear subscripted variables. It won't clear these variables for example.
Subscript[x, D] = {{0.97, 0.95, 0.93, 0.94, 0.96}}
Subscript[x, B] = {{0.04, 0.05, 0.06, 0.06, 0.04}}
ClearAll["Global`*"]
doesn't clear subscripted variables. It won't clear these variables for example.
Subscript[x, D] = {{0.97, 0.95, 0.93, 0.94, 0.96}}
Subscript[x, B] = {{0.04, 0.05, 0.06, 0.06, 0.04}}
Subscript[x, D], etc., are expressions, not variables. Your definitions are stored as down-values of the symbol Subscript. You need to use
ClearAll[Subscript]
{}button above the edit window. The edit window help button?is also useful for learning how to format your questions and answers. You may also find this this meta Q&A helpful – Michael E2 Feb 10 '16 at 03:11