X Tutup
Skip to content

what is the source code of ax.pcolormesh(T, R, Z,vmin=0,vmax=255,cmap='jet') ? #5843

@qxang

Description

@qxang

@_autogen_docstring(Axes.pcolormesh)
def pcolormesh(_args, *_kwargs):
ax = gca()
# allow callers to override the hold state by passing hold=True|False
washold = ax.ishold()
hold = kwargs.pop('hold', None)
if hold is not None:
ax.hold(hold)
try:
ret = ax.pcolormesh(_args, *_kwargs)
draw_if_interactive()
finally:
ax.hold(washold)
sci(ret)
return ret

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      X Tutup