To create an Object Class in MATLAB, follow these steps: 1. Define the class using the classdef keyword. 2. Specify properties using properties. 3. Add methods using methods. 4. Implement the constructor to initialize objects. 5. Use your class by creating an instance and accessing its properties and methods.