% Initialize the SAP2000 COM interface
sapObject = actxserver('SAP2000v20.SapObject');
% Start the SAP2000 application
sapObject.StartApplication;
% Open an existing model
modelPath = 'C:\path\to\model.sdb';
sapObject.SapModel.File.OpenFile(modelPath);