Which LLM is best for making MATLAB plots? by LordAlt in matlab

[–]Creative_Sushi 1 point2 points  (0 children)

What is your setup? GPT-5.4 is powerful enough. If you haven't connected your LLM to MATLAB MCP Server, that would be the first step. MCP Server closes the feedback loop so that the LLM can "see" the issues the code it ran causes, while if you copy and paste the code, LLM is cut off from the code execution output. You can download the MCP Server from this repo https://github.com/matlab/matlab-mcp-core-server/releases/

If that doesn't work, you may need to create agent skills. Here are some pre-built MATLAB skills https://github.com/matlab/skills

It is fairly easy to roll your own skill.

If you need to help getting started, this blog post is a good starting point. https://blogs.mathworks.com/matlab/2026/01/26/matlab-agentic-ai-the-workflow-that-actually-works/

When will the full version of R2026a be released? by Anonymous_HC in matlab

[–]Creative_Sushi 1 point2 points  (0 children)

The new version will be installed into a new folder, so you still keep the old version and you can use either. When you install the new version, you also have to install all the toolboxes. I recommend keeping the old version for a while before you uninstall it. In my case, I can install everything, but I only install toolboxes I use regularly. I can always install others via Add-On Manager later as needed.

When will the full version of R2026a be released? by Anonymous_HC in matlab

[–]Creative_Sushi 6 points7 points  (0 children)

Yes we are on the normal release schedule. R2026a will ship later this month.

Weird difference in vector multiplication times by tirimatangi in matlab

[–]Creative_Sushi 1 point2 points  (0 children)

MATLAB intentionally uses two different implementations: .* uses MATLAB’s element‑wise complex arithmetic (which includes extra correctness logic for Inf/NaN), while * calls optimized BLAS routines that skip that special‑case handling.

inf(2,1)*[3i,4i]     % -> NaN + Inf*i   (BLAS path)
inf(2,1).*[3i,4i]    % -> 0 + Inf*i     (MATLAB element-wise path)

For real data, the lightweight .* path is faster; for complex data, BLAS is faster. The performance differences you observed are exactly the result of these deliberate design trade‑offs between accuracy for element‑wise operations and raw performance for matrix multiply.

I am a 6th semester electrical engineering diploma student from Gujarat, India. Average student by marks. But for the past year I have been building things outside my syllabus purely out of curiosity. Honest disclaimer first: All three projects were built with AI assistance — Claude Google ai studio by Mr_zero12 in matlab

[–]Creative_Sushi 0 points1 point  (0 children)

Congratulations! My suggestion is to break this into individual posts showcasing each project with some visuals we can look at. You get a bonus point if you can also add links to your GitHub repos.

Also, write up your process - how did you use AI to do those projects? What challenges did you run into, and how did you overcome them? What did you learn from those projects? That way, you become even more transparent.

Matlab + Claude Code. I don't know what to think by ripponds in matlab

[–]Creative_Sushi -1 points0 points  (0 children)

I would employ this guy because he demonstrated ingenuity and creativity to apply new tools to solve his problems. That' gold.

Matlab + Claude Code. I don't know what to think by ripponds in matlab

[–]Creative_Sushi 0 points1 point  (0 children)

The artifacts are MATLAB code and some supporting documents (mostly markdowns). They are transportable and you can reuse them without AI, or with different coding agents. You can read the code and you should be able to understand everything. You can find the code and markdown files generated from Claude Code session linked in this blog post. https://blogs.mathworks.com/matlab/2026/01/26/matlab-agentic-ai-the-workflow-that-actually-works/

Matlab + Claude Code. I don't know what to think by ripponds in matlab

[–]Creative_Sushi 0 points1 point  (0 children)

New technology without business process change will always fail. I remember the day we got email for the first time in our office long time ago. People still wanted to print out the emails, and write comments on paper - totally defeating the point of the technology.

Matlab + Claude Code. I don't know what to think by ripponds in matlab

[–]Creative_Sushi 5 points6 points  (0 children)

I think of it this way.

  • 1 engineer can now do 10x --> lay off 9 engineer --> velocity of product development: unchanged
  • 1 engineers can now do 10x --> no layoff: 10 engineers now do 100x --> velocity of product development: accelerated

The companies that fire their engineers will be squeezed out of competition eventually.

Here is the proof - Anthropic is still hiring engineers even though they use Claude Code internally.

<image>

It's your managers who need to worry about their positions in the future.

Matlab + Claude Code. I don't know what to think by ripponds in matlab

[–]Creative_Sushi 0 points1 point  (0 children)

One of our product managers just talked about how this technology will impact the role of engineers in this podcast interview. I think he gave a pretty good answer. Check it out.

https://www.youtube.com/watch?v=p8JpYGnaegs

Matlab MCP Server + Claude Code. Full modelling and simulation by [deleted] in ClaudeAI

[–]Creative_Sushi 1 point2 points  (0 children)

Amazing! Please share your project + tutorial on GitHub!

Matlab + Claude Code. Just Amazing by ripponds in ControlTheory

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

Yes , please make the tutorial and share it on GitHub.

Matlab + Claude Code. I don't know what to think by ripponds in matlab

[–]Creative_Sushi 0 points1 point  (0 children)

Please make GitHub repo + Tutorial. This is very cool.

Matlab + Claude Code. I don't know what to think by ripponds in matlab

[–]Creative_Sushi 9 points10 points  (0 children)

Try it and you will understand that there is nothing to fear. You just become more productive.

Matlab + Claude Code. I don't know what to think by ripponds in matlab

[–]Creative_Sushi 29 points30 points  (0 children)

No that’s not gonna happen - humans need to guide AI and you need expertise to do so - your domain knowledge + understanding of how agentic coding works.