Here, I add a cell selection callback to a table in one of my MATLAB apps by copying this functionality from another app.
Features covered in this code-along style video include:
App… read more >>
Here, I add a cell selection callback to a table in one of my MATLAB apps by copying this functionality from another app.
Features covered in this code-along style video include:
App… read more >>
I’ll be doing my Blog live today on YouTube at 11am EDT. It will be a code-along as I normally do, mostly working with App Designer, but I’ll try and answer the occasional question from… read more >>
The unit tests for my web app have failed because I added a new variable to my data set. Rather than re-design my tests I’ve decided to take the lazy way out for now and update my app to ignore… read more >>
Here I am going to try and add an additional column to a table in my web app. Its been more than a year since I worked on this app, so I need to first find where in my code I do the table… read more >>
Debugging and fixing a problem in a MATLAB web app, poses some challenges that you don’t have when working in desktop MATLAB. Here is how I typically do it, using a failure in one of my… read more >>
The web app I’m working on manipulates a set of MAT files and lets me switch between them. Occasionally I will forget to save changes to a MAT file before I load a new one. So here, I want to… read more >>
I want to occasionally copy text from data in a table in my web app, so I try to add a line to the cell selection callback to copy the cell value to the clipboard. However, this first idea fails and… read more >>
I’ve added a few tabs to my web app recently to provide some new functionality. However they are not needed for every user and they make the interface more busy. So I think I will try and hide… read more >>
I need to develop a new feature in one of my MATLAB web apps. I also need to test it, commit it to source control and re-deploy.
Features covered in this code-along style video include:
App… read more >>
I need to continue debugging the code that I moved into App Designer by updating all plotting functions to specify a specific axes. I forgot I defined a bunch of interactivity callbacks (mouse-over,… read more >>