How to rename a network object from command prompt
Mostrar comentarios más antiguos
I have a network object called 'net' that I want to rename to 'net1'.
So I've tried numerous variations on:
rename(net,'net','net1')
rename(net, 'net1')
etc
and I keep getting the error "Undefined function or method 'rename' for input arguments of type 'network'."
So if I'm not supposed to use 'rename' to change the name of a 'network' object, how do I accomplish my goal?
Respuestas (1)
Greg Heath
el 17 de Jul. de 2012
0 votos
net1 = net;
1 comentario
Walter Roberson
el 17 de Jul. de 2012
Followed by
clear net;
since it is a rename that is desired rather than a copy.
Categorías
Más información sobre Get Started with Deep Learning Toolbox en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!