Remove target feature object from MATLAB memory
target.remove(
removes the
target feature object from MATLAB® memory.targetFeatureObject
)
target.remove(
removes the target feature object specified by class and identifier.targetFeatureClass
, targetFeatureObjectId
)
You can specify and save a hardware device implementation to MATLAB memory.
armv8 = target.create('LanguageImplementation', ... 'Name', 'Armv8-A LP64'); a53 = target.create('Processor', 'Name', 'Cortex-A53', ... 'Manufacturer', 'ARM Compatible'); a53.LanguageImplementations = armv8; target.add(a53)
When target feature objects are not required, you can use the function to remove the objects from MATLAB memory.
To remove only the target.Processor
object,
run:
target.remove(a53)
target.remove('Processor', 'ARM Compatible-Cortex-A53');