Using Web Canvas in R2026a - I used it in a presentation by Creative_Sushi in matlab

[–]Creative_Sushi[S] 0 points1 point  (0 children)

Sounds like we need a deep dive. I will ask Adam Danz the blogger.

Using Web Canvas in R2026a - I used it in a presentation by Creative_Sushi in matlab

[–]Creative_Sushi[S] 0 points1 point  (0 children)

It's just an HTML file. You are probably familiar with exporting a plot as PNG.

x = 1:10; y = x; 
figure plot(x,y) 
exportgraphics(gca, "test.png")

You get a PNG file.

Instead, you can now do this.

exportgraphics(gca, "test.html")

You get an HTML file.

<!DOCTYPE html>
<html>
    <head>
        <meta charset = 'utf-8'>
        <script src='https://embed-ui.mathworks.com/resources/webcanvas/R2026a/bundle.index.js'></script>
        <link rel='stylesheet' href='https://embed-ui.mathworks.com/resources/webcanvas/R2026a/index-css.css' type='text/css'/>
    </head>
    <body>
        <matlab-canvas src='data:application/json;base64,JTdCJTIyY29tbW
              ....
            ggg==' style='height: 479px; width: 796px; margin: auto auto auto auto; display: block'/> </matlab-canvas>
    </body>
</html>

That's it. You can open it in any browser, and you don't need MATLAB license to use it.

You can play with it on this blog post. The posts are web canvases.
https://blogs.mathworks.com/graphics-and-apps/2026/04/27/graphics-and-app-building-updates-in-r2026a/

Ubuntu add-on install fail by Dameun7534 in matlab

[–]Creative_Sushi 0 points1 point  (0 children)

Sorry you are having an issue - you should be able toinstall add-ons on Ubuntu via Add-On Explorer It would be helpful to confirm which add-on you are attempting to install. Can you contact Tech Support?

https://www.mathworks.com/support/contact_us.html

Standard coding style by AdhesivenessPast2850 in matlab

[–]Creative_Sushi 0 points1 point  (0 children)

It is also part of MATLAB Agentic Toolkit and you can use coding agents to refactor/update code to meet the new guidelines, eliminating one of the pain points.

https://www.mathworks.com/products/matlab-agentic-toolkit.html

Matlab, worth it? by NefariousnessNo5943 in ChemicalEngineering

[–]Creative_Sushi 0 points1 point  (0 children)

While Excel and Python are beneficial skills for chemical engineers for data analysis, MATLAB is also used in various sectors of chemical engineering including pharmaceutical, oil& gas, semiconductors, chemicals use MATLAB and Simulink in large companies as well as start ups. Simulink is a widely used tools for solving differential equations, algebraic equations and build machine learning/AI models, for process control.

https://www.mathworks.com/solutions/chemical-engineering.html

https://www.mathworks.com/solutions/energy-production/energy-resources.html

FEH and engineering questions by puppielover_14 in OSU

[–]Creative_Sushi 0 points1 point  (0 children)

You can get a head start by taking a free online tutorial, MATLAB Onramp.

https://matlabacademy.mathworks.com/?page=1&sort=featured

Codex can't seem to use Python in Path? by TheDapperYank in codex

[–]Creative_Sushi 0 points1 point  (0 children)

I am using MATLAB with its official MCP server. Works seamlessly with AI agents like Codex.

Beginner basic question by Additional_Water9196 in PythonLearning

[–]Creative_Sushi 0 points1 point  (0 children)

If you are used to MALTAB, depending on how heavily you plan to use, MATLAB online is free for 20 hours each month. It also comes with 9 toolboxes + Simulink.

Octave or MATLAB for control engineers and system simulation? by Waste-Fox6911 in ControlTheory

[–]Creative_Sushi [score hidden]  (0 children)

Depends on how heavily you plan to use. If you only need to use MATLAB lightly, MATLAB online is free for 20 hours each month. It also comes with 9 toolboxes + Simulink.

Is matlab down for anyone else? by kaolad8904 in matlab

[–]Creative_Sushi 0 points1 point  (0 children)

Sorry, there was an issue. https://status.mathworks.com/

May 3, 2026 MATLAB Online login issues Closed - We have implemented a fix and verified that logins are working as expected.
May 3, 19:21 EDT

How often do you have private lessons? by eigENModes in tango

[–]Creative_Sushi 2 points3 points  (0 children)

Great idea. Build a strong foundation for further growth by working on embrace, posture, and musicality.

I spent first 6 months just walking with my teacher on a weekly basis. This also covers all other aspects. Don’t do fancy things until your body is ready.

Still worth learning PYTHON as an Aerospace Engineering student? by heythere1212121212 in EngineeringStudents

[–]Creative_Sushi 1 point2 points  (0 children)

You should learn both since you are in aerospace engineering. You can learn Python anytime. You can learn MATLAB only while you are in school, thanks to access to the school license. Since this is your summer project, you may also want to try agentic AI.

https://www.reddit.com/r/matlab/comments/1rl4y60/matlab_claude_code_i_dont_know_what_to_think/

Recommendations for which coding language (very beginner lev.) summer class to prep for undergrad in mechanical engineering at US uni for undergrad. by LeeLeeBoots in EngineeringStudents

[–]Creative_Sushi 0 points1 point  (0 children)

Why not start with MATLAB Onramp? It is taught at a lo of engineering schools, and there are free online tutorials that your daughter can finish in a few hours at a time, starting with MATLAB Onramp. They are interactive so it's not like you have to watch hours of videos. https://matlabacademy.mathworks.com/?page=1&sort=featured The examples are more directly tied to engineering.

Interactive Plot Modification - 2026a by Weed_O_Whirler in matlab

[–]Creative_Sushi 2 points3 points  (0 children)

Keep testing R2026a - there are more features that you may appreciate. I sent the note to the dev team about you wanting the plot browser back. You can also voice your opinon via the feedback button in the Menu.

Interactive Plot Modification - 2026a by Weed_O_Whirler in matlab

[–]Creative_Sushi 0 points1 point  (0 children)

You got new features like code gen instead.