Save modified cluster properties to its current profile
saveProfile(cluster)
saves the modified
properties on the cluster object to the profile specified by the cluster’s Profile
property,
and sets the Modified
property to false
.
If the cluster’s Profile
property is
empty, an error is thrown.
Create a cluster, then modify a property and save the change to the profile.
myCluster = parcluster('local')
myCluster = Local Cluster Properties: Profile: local Modified: false Host: HOSTNAME NumWorkers: 4
myCluster.NumWorkers = 3
myCluster = Local Cluster Properties: Profile: local Modified: true Host: HOSTNAME NumWorkers: 3
The myCluster.Modified
property is now true
.
saveProfile(myCluster); myCluster
myCluster = Local Cluster Properties: Profile: local Modified: false Host: HOSTNAME NumWorkers: 3
After saving, the local
profile now matches
the current property settings, so the myCluster.Modified
property
is false
.