{"id":15716370,"url":"https://github.com/plotly/plotly_matlab","last_synced_at":"2025-05-15T12:04:58.857Z","repository":{"id":12000621,"uuid":"14579123","full_name":"plotly/plotly_matlab","owner":"plotly","description":"Plotly Graphing Library for MATLAB®","archived":false,"fork":false,"pushed_at":"2025-03-26T20:50:00.000Z","size":89753,"stargazers_count":399,"open_issues_count":122,"forks_count":167,"subscribers_count":66,"default_branch":"master","last_synced_at":"2025-04-14T22:18:40.382Z","etag":null,"topics":["d3","d3js","data-science","data-visualization","matlab","plotly","technical-computing","webgl"],"latest_commit_sha":null,"homepage":"https://plot.ly/matlab/","language":"MATLAB","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/plotly.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2013-11-21T05:54:40.000Z","updated_at":"2025-04-14T02:43:36.000Z","dependencies_parsed_at":"2024-06-17T12:43:32.852Z","dependency_job_id":"d763b10d-a290-4ac4-a646-a9b880db43ad","html_url":"https://github.com/plotly/plotly_matlab","commit_stats":{"total_commits":998,"total_committers":40,"mean_commits":24.95,"dds":0.4418837675350702,"last_synced_commit":"19c7756b0b3e34be6b8fc36998fd62b3b7339a2e"},"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plotly%2Fplotly_matlab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plotly%2Fplotly_matlab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plotly%2Fplotly_matlab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plotly%2Fplotly_matlab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plotly","download_url":"https://codeload.github.com/plotly/plotly_matlab/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254337612,"owners_count":22054253,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["d3","d3js","data-science","data-visualization","matlab","plotly","technical-computing","webgl"],"created_at":"2024-10-03T21:45:16.091Z","updated_at":"2025-05-15T12:04:53.842Z","avatar_url":"https://github.com/plotly.png","language":"MATLAB","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Plotly Graphing Library for MATLAB®\n\n\u003e Plotly Graphing Library for MATLAB® - Create interactive charts in your web browser with MATLAB® and Plotly\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://dash.plotly.com/project-maintenance\"\u003e\n    \u003cimg src=\"https://dash.plotly.com/assets/images/maintained-by-community.png\" width=\"400px\" alt=\"Maintained by the Plotly Community\"\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\nVersion: 3.0.0\n\n*MATLAB is a registered trademarks of The MathWorks, Inc.*\n\n## Install\n\nThe latest version of the wrapper can be downloaded [here](https://github.com/plotly/MATLAB-Online/archive/master.zip).\n\nOnce downloaded, run `plotlysetup_offline()` to get started.\nIf you have a plotly bundle url of the form '\u003chttp://cdn.plot.ly/plotly-latest.min.js\u003e', then run instead\n`plotlysetup_offline('plotly_bundle_url')\n\nFor online use, run `plotlysetup_online('your_username', 'your_api_key')` to get started.\n\n### Updates\n\n**NOTE:** `plotlyupdate.m` is currently turned off.\n\nPlease manually download and setup the latest version\nof the wrapper by following the installation instructions above.\n\n## Usage\n\nConvert your MATLAB® figures into online [Plotly](https://plot.ly) graphs with a single line of code:\n\n```MATLAB\n % Create some data for the two curves to be plotted\n x  = 0:0.01:20;\n y1 = 200*exp(-0.05*x).*sin(x);\n y2 = 0.8*exp(-0.5*x).*sin(10*x);\n\n % Create a plot with 2 y axes using the plotyy function\n figure;\n [ax, h1, h2] = plotyy(x, y1, x, y2, 'plot');\n\n % Add title and x axis label\n xlabel('Time (s)');\n title('Frequency Response');\n\n % Use the axis handles to set the labels of the y axes\n ax(1).YLabel.String = \"Low Frequency\";\n ax(2).YLabel.String = \"High Frequency\";\n\n %--PLOTLY--%\n p = fig2plotly; % \u003c-- converts the yy-plot to an interactive, online version.\n\n %--URL--%\n % p.url = 'https://plot.ly/~matlab_user_guide/1522'\n\n```\n\n[![MATLAB® Contour Plot](https://plot.ly/~matlab_user_guide/1522.png)](https://plot.ly/~matlab_user_guide/1522)\n\nAlso, access other Plotly services and graphs programmatically. Like, publication-quality image export:\n\n```MATLAB\n saveplotlyfig(p, 'testimage.svg')\n```\n\nand Plotly figure retrieval:\n\n```MATLAB\n p = getplotlyfig('chris', 1638) % downloads the graph data from https://plot.ly/~chris/1638\n```\n\n## Documentation\n\nThis lives here: [https://plot.ly/matlab](https://plot.ly/matlab)\n\n## Questions \u0026 troubleshooting\n\nAsk on the [Plotly Community Forum](https://community.plotly.com/c/plotly-r-matlab-julia-net)\n\n## Contribute\n\nPlease do! This is an open source project. Check out [the issues](https://github.com/plotly/MATLAB-Online/issues) or open a PR!\n\nWe want to encourage a warm, welcoming, and safe environment for contributing to this project. See the [code of conduct](CODE_OF_CONDUCT.md) for more information.\n\n## License\n\n[MIT](LICENSE) © 2021 Plotly, Inc.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplotly%2Fplotly_matlab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplotly%2Fplotly_matlab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplotly%2Fplotly_matlab/lists"}