René's URL Explorer Experiment


Title: PySmithPlot/Polar Plot update broken in 2.1.2 (works in 2.0.2) · Issue #10654 · matplotlib/matplotlib · GitHub

Open Graph Title: PySmithPlot/Polar Plot update broken in 2.1.2 (works in 2.0.2) · Issue #10654 · matplotlib/matplotlib

X Title: PySmithPlot/Polar Plot update broken in 2.1.2 (works in 2.0.2) · Issue #10654 · matplotlib/matplotlib

Description: Bug report Bug summary The smith chart grid is distorted in 2.1.2, correct in 2.0.2. Updating the polar plot data blanks the plot in 2.1.2, updates properly in 2.0.2. In both versions when I create the plots/lines I see: /Users/chrisgmor...

Open Graph Description: Bug report Bug summary The smith chart grid is distorted in 2.1.2, correct in 2.0.2. Updating the polar plot data blanks the plot in 2.1.2, updates properly in 2.0.2. In both versions when I create...

X Description: Bug report Bug summary The smith chart grid is distorted in 2.1.2, correct in 2.0.2. Updating the polar plot data blanks the plot in 2.1.2, updates properly in 2.0.2. In both versions when I create...

Opengraph URL: https://github.com/matplotlib/matplotlib/issues/10654

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"PySmithPlot/Polar Plot update broken in 2.1.2 (works in 2.0.2)  ","articleBody":"\u003c!--To help us understand and resolve your issue, please fill out the form to the best of your ability.--\u003e\r\n\u003c!--You can feel free to delete the sections that do not apply.--\u003e\r\n\r\n### Bug report\r\n\r\n**Bug summary**\r\n\r\nThe smith chart grid is distorted in 2.1.2, correct in 2.0.2.\r\nUpdating the polar plot data blanks the plot in 2.1.2, updates properly in 2.0.2.\r\n\r\nIn both versions when I create the plots/lines I see:\r\n\r\n/Users/chrisgmorton/usr/tcad/fusion/prod/lib/python3.6/site-packages/pysmithplot-0.2.0-py3.6.egg/smithplot/smithhelper.py:46: RuntimeWarning: divide by zero encountered in true_divide\r\n/Users/chrisgmorton/usr/tcad/fusion/prod/lib/python3.6/site-packages/pysmithplot-0.2.0-py3.6.egg/smithplot/smithhelper.py:46: RuntimeWarning: invalid value encountered in true_divide\r\n/Users/chrisgmorton/usr/tcad/fusion/prod/lib/python3.6/site-packages/matplotlib/projections/polar.py:58: RuntimeWarning: invalid value encountered in less\r\n  mask = r \u003c 0\r\n\r\nOn the first update of the plots I see:\r\n\r\nUsers/chrisgmorton/usr/tcad/fusion/prod/lib/python3.6/site-packages/matplotlib/projections/polar.py:58: RuntimeWarning: invalid value encountered in less\r\n  mask = r \u003c 0\r\n\r\nand the polar plots are then blanked out (not so with 2.0.2).\r\n\r\n**Code for reproduction**\r\n\r\n\u003c!--A minimum code snippet required to reproduce the bug, also minimizing the number of dependencies required--\u003e\r\nPlots are built with:\r\n```python\r\n        self.axes=[]\r\n        n = self.numberOfPorts\r\n        \r\n        for i,j in self.indices:\r\n            if i==j: self.axes.append(self.fig.add_subplot(n,n,1+i*2+j, projection='smith'))\r\n            else: self.axes.append(self.fig.add_subplot(n,n,1+i*2+j, projection='polar'))\r\n\r\n        for k,(i,j) in enumerate(self.indices):\r\n            self.axes[k].tick_params(which='major', labelsize=10)\r\n\r\n        self.fig.subplots_adjust(top=0.9)\r\n```\r\nLines initialized with:\r\n```python\r\n        self.lines=[]\r\n        \r\n        for m,(i,j) in enumerate(self.indices):\r\n\r\n            if i==j: # Smith Chart\r\n                S=self.Splt.T[j,i].T\r\n                Z = (1+S)/(1-S) # normalized impedance on Smith Chart\r\n\r\n                self.lines.append(self.axes[m].plot(Z.T, color='b', marker='', markerfacecolor='b', markeredgecolor='b'))\r\n            else: # Polar Plot\r\n                S = self.Splt.T[j,i].T\r\n                self.lines.append(self.axes[m].plot(np.angle(S.T), np.absolute(S.T), color='r', marker='', markerfacecolor='r', markeredgecolor='r'))\r\n```\r\n\r\nLines updated with:\r\n```python\r\n        for k,(i,j) in enumerate(self.indices):\r\n            \r\n            if i==j: # Smith Chart\r\n                S=self.Splt.T[j,i].T\r\n                Z = (1+S)/(1-S) # normalized impedance on Smith Chart\r\n\r\n                [line.set_xdata(np.real(Z[idx])) for idx, line in enumerate(self.lines[k])]\r\n                [line.set_ydata(np.imag(Z[idx])) for idx, line in enumerate(self.lines[k])]\r\n                \r\n            else: # Polar Plot\r\n                S = self.Splt.T[j,i].T\r\n\r\n                [line.set_xdata(np.angle(S[idx])) for idx, line in enumerate(self.lines[k])]\r\n                [line.set_ydata(np.absolute(S[idx])) for idx, line in enumerate(self.lines[k])]\r\n```\r\n**Actual outcome**\r\n\r\n\u003c!--The output produced by the above code, which may be a screenshot, console output, etc.--\u003e\r\nMatplotlib 2.1.2 output, on completion of simulation:\r\n\r\n![screen shot 2018-03-02 at 4 59 20 pm](https://user-images.githubusercontent.com/4575602/36928721-2bb3ae6e-1e3d-11e8-84bf-3962889cf1ec.png)\r\n\r\n**Expected outcome**\r\n\r\n\u003c!--A description of the expected outcome from the code snippet--\u003e\r\n\u003c!--If this used to work in an earlier version of Matplotlib, please note the version it used to work on--\u003e\r\nMatplotlib 2.0.2 output, on completion of simulation:\r\n\r\n![screen shot 2018-03-02 at 3 18 06 pm](https://user-images.githubusercontent.com/4575602/36928741-68999b86-1e3d-11e8-9f95-406aa8aef567.png)\r\n\r\n**Matplotlib version**\r\n\u003c!--Please specify your platform and versions of the relevant libraries you are using:--\u003e\r\n  * Operating system: Ubuntu 16.04 and OSX 10.13.3\r\n  * Matplotlib version: 2.1.2\r\n  * Matplotlib backend: Qt5Agg (Qt5.10)\r\n  * Python version: 3.6.4\r\n  * PySmithPlot version: 0.2\r\n\r\n\u003c!--Please tell us how you installed matplotlib and python e.g., from source, pip, conda--\u003e\r\nMatplotlib installed using pip. Qt5 and PyQt5 built from source. Python 3.6.4 built from source.\r\n\u003c!--If you installed from conda, please specify which channel you used if not the default--\u003e","author":{"url":"https://github.com/chrisgmorton","@type":"Person","name":"chrisgmorton"},"datePublished":"2018-03-03T01:31:01.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":31},"url":"https://github.com/10654/matplotlib/issues/10654"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:107605ff-5198-2e44-da0f-e9231abecdc1
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idB062:1BA1D0:2CE6A6:3AE21A:6A52F57D
html-safe-noncebc091e1c4995240ae52c56a72f8ebe63f3889ab0bcf0298ed56f107606012fe2
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCMDYyOjFCQTFEMDoyQ0U2QTY6M0FFMjFBOjZBNTJGNTdEIiwidmlzaXRvcl9pZCI6IjI1MjMzODQwOTk4NDY4NTQzNyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmace18d9f41a697928d713c8f9f73e5ff891a7b307ec6d3e77ef92ce017c7f37823
hovercard-subject-tagissue:301954714
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/matplotlib/matplotlib/10654/issue_layout
twitter:imagehttps://opengraph.githubassets.com/c137f7b0c173ffd0369c95fb844d762a9e4b47566530f120defd6811c7610c4f/matplotlib/matplotlib/issues/10654
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/c137f7b0c173ffd0369c95fb844d762a9e4b47566530f120defd6811c7610c4f/matplotlib/matplotlib/issues/10654
og:image:altBug report Bug summary The smith chart grid is distorted in 2.1.2, correct in 2.0.2. Updating the polar plot data blanks the plot in 2.1.2, updates properly in 2.0.2. In both versions when I create...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamechrisgmorton
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
turbo-cache-controlno-preview
go-importgithub.com/matplotlib/matplotlib git https://github.com/matplotlib/matplotlib.git
octolytics-dimension-user_id215947
octolytics-dimension-user_loginmatplotlib
octolytics-dimension-repository_id1385122
octolytics-dimension-repository_nwomatplotlib/matplotlib
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1385122
octolytics-dimension-repository_network_root_nwomatplotlib/matplotlib
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release07a982c1d40157c619b364352b704c3ce66bb332
ui-targetcanary-1
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/issues/10654#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F10654
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F10654
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=matplotlib%2Fmatplotlib
Reloadhttps://github.com/matplotlib/matplotlib/issues/10654
Reloadhttps://github.com/matplotlib/matplotlib/issues/10654
Reloadhttps://github.com/matplotlib/matplotlib/issues/10654
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/10654
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/10654
Notifications https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Fork 8.4k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Star 23k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Code https://github.com/matplotlib/matplotlib
Issues 1.1k https://github.com/matplotlib/matplotlib/issues
Pull requests 408 https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality 0 https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
Code https://github.com/matplotlib/matplotlib
Issues https://github.com/matplotlib/matplotlib/issues
Pull requests https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
#10690https://github.com/matplotlib/matplotlib/pull/10690
PySmithPlot/Polar Plot update broken in 2.1.2 (works in 2.0.2) https://github.com/matplotlib/matplotlib/issues/10654#top
#10690https://github.com/matplotlib/matplotlib/pull/10690
topic: polarhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22topic%3A%20polar%22
v2.2.1https://github.com/matplotlib/matplotlib/milestone/32
https://github.com/chrisgmorton
chrisgmortonhttps://github.com/chrisgmorton
on Mar 3, 2018https://github.com/matplotlib/matplotlib/issues/10654#issue-301954714
https://user-images.githubusercontent.com/4575602/36928721-2bb3ae6e-1e3d-11e8-84bf-3962889cf1ec.png
https://user-images.githubusercontent.com/4575602/36928741-68999b86-1e3d-11e8-9f95-406aa8aef567.png
topic: polarhttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22topic%3A%20polar%22
v2.2.1https://github.com/matplotlib/matplotlib/milestone/32
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.