MshCreator.set_parameters
- MshCreator.set_parameters(**kawrgs) None
Generic method to set any attribute of
NRV_class
instance- Parameters:
***kwargs – Key arguments containing one or multiple parameters to set.
Examples
As the
myelinated
inherits from NRV_class-class parameters, such as diameter and lenght can be set with set_parameters.>>> ax = nrv.myelinated() >>> print(ax.d, ax.L) 10, 10000 >>> ax.set_parameters(d=6, L=1000) >>> print(ax.d, ax.L) 6, 1000