Answered
How can i take a property names in cell array of char vectors without using property function?
Why do you need to the property list in the C/C++ code? You could always just store it manually which would also let you contro...

5 years ago | 0

Answered
Add space and style to sliced table - MATLAB Report Generator
You're appending the same paragraph multiple times. It can only be appended once. Clone it first append(d,clone(p))

5 years ago | 0

Answered
Cumulative sum of last n entries of column vectors
Read saved table T = readtable('data.txt'); head(T) ans = C A CA _____ _ __ {'A'} 1 1...

5 years ago | 1

| accepted

Answered
Appdesigner apps won't run
Sounds like you may have corrupted: appdesigner.internal.service.AppManagementService. Probably worth contacting tech support. ...

5 years ago | 0

Answered
How to color/shade a sector of a polar plot with customized axis?
Use a polarhistogram and a polarplot (these are newer replacements for polar). This should give you the flexibility you want.

5 years ago | 0

| accepted

Answered
Unit tests fail on "even" runs, but pass on "odd" runs (alternating pass/fail)
You should convert your code files and tests into a MATLAB Project which manages the path for you. Then as long as the project ...

5 years ago | 0

Answered
How to partition (discretize) the space around points using Voronoi Diagram?
Create a polyshape for each voronoi cell. Loop over cells and test isinterior for each, you can short circuit when you find a ...

5 years ago | 1

| accepted

Submitted


Figure Deployer
Deploy figures to images or byte streams.

5 years ago | 1 download |

0.0 / 5
Thumbnail

Answered
how i can known the active tab in a tabgroup component in the appdessigner tool?
What do you mean this "doesn't work"? app.nameTabGroup.Selectedtab Is the right way to do this so somewhere your logic or cod...

5 years ago | 1

| accepted

Answered
find handle to uialert/uiconfirm windows/boxes
EDIT September 2021: In 21a you can dismiss and alert with: https://www.mathworks.com/help/releases/R2021a/matlab/ref/matlab.u...

5 years ago | 1

Answered
Error using matlab.codetools.requiredFilesAndProducts (line 91)
Please contact technical support. At the very least this is a bug because available has a typo in it.

5 years ago | 0

Answered
I have a plot and i want to switch it to histogram ,how i can do it?
Something like this histogram(mat,edges,'Normalization','probability');

5 years ago | 0

Answered
global legend in tiledlayout
Look at sgtitle which does exactly this. doc sgtitle

5 years ago | 1

Answered
In Deep Learning Toolbox, what input layer should I use for simple dataframe-type input?
I don't think deep learning is the right approach if your input data has two points. Consider using a standard machine learning...

5 years ago | 0

Answered
How to get multiple class instances in function?
a.myfunc(b) % or myfunc(a, b) When you call a.function it passes a as the first input so right now you're doing the equivalen...

5 years ago | 1

| accepted

Answered
Best Practice for Defining Large Constant Array in Function (Must Code-generate)
Look at using System Objects and the MATLAB System block in Simulink. These are optimized for streaming workflows and code gene...

5 years ago | 0

Answered
Select edges that connect subgraphs together
This works for your sample data set (which does not include nodes 12:14 as shown in the plot. Please test test this, I'm not a ...

5 years ago | 0

| accepted

Answered
exist() absolute vs relative path
If you're on a newer release, consider using isfile(). https://www.mathworks.com/help/matlab/ref/isfile.html

5 years ago | 0

Answered
Hiding only a section of code in live script.
Put the code you don't want displayed in a separate function that's called from the main live script.

5 years ago | 2

Submitted


MATLAB Production Server Sizer
Size your MATLAB Production Server.

5 years ago | 1 download |

0.0 / 5
Thumbnail

Answered
range different longitude and latitude geoshow
Look at bufferm https://www.mathworks.com/help/map/ref/bufferm.html. Call that on your data and then just take the bounds() of ...

5 years ago | 0

Answered
Importing NetCDF files: Script stops when a variable is missing from a file.
Use ncinfo to determine if the variable exists in the file before you to try to read it.

5 years ago | 0

| accepted

Answered
Error when assigning categories to a tall array
That also appears to be a bug in how tall handles scalar strings for cats and values. If you make code and meaning into vectors...

5 years ago | 0

| accepted

Answered
replace function in tall array. This indicates an internal error. Please contact MathWorks Technical Support.
At the very least it's a doc bug because the doc says that tall arrays are fully supported for replace. It does appear to work ...

5 years ago | 0

Answered
App Designer Main Window Behaviour
You should consider just using menus since that's what you're replicating with tabs. https://www.mathworks.com/help/matlab/ref/...

5 years ago | 0

Answered
Export Table from Matlab Guide to Excel
This would be a lot easier in App Designer because the uitable data can just be a MATLAB table. I'd strongly encourage you to m...

5 years ago | 0

| accepted

Answered
Matlab app designer can't go further than the first dropdown value
if app.ConfigDropDown.Value == '1' elseif app.ConfigDropDown.Value == '2' elseif app.ConfigDropDown.Value == '3' en...

5 years ago | 1

| accepted

Submitted


Testing McCabe Complexity
Use this test to ensure that the files in your project are not too complex.

5 years ago | 1 download |

0.0 / 5
Thumbnail

Answered
Label connected components in binary image using non-standard pixel connectivity
Call imdilate with a custom structuring element of your size. This will then expand the regions so they overlap and bwlabel can...

5 years ago | 0

| accepted

Answered
Create a 32bit compatible standalone App with MATLAB R2019b
This is directly ony possible with R2015a or older, the last release to support 32 bit. You may consider using web apps which...

5 years ago | 0

| accepted

Load more