79552520

Date: 2025-04-03 09:30:14
Score: 1
Natty:
Report link

matlabplot version 3.7.2

I prefer to use OOP-style code

ax = fig.add_subplot(111, projection='3d') # not oo style code

If you want to use OOP-style code

fig, ax = plt.subplots(subplot_kw={"projection": "3d"}) 
# it works but I dont like subplot_kw
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: domonnss