Answered
Find values within a contour and replace with nan
It sounds like the goal is to hide the scatter points under the contour in which case it would be easiest to use the (x,y) coord...

5 years ago | 0

Answered
how to plot multiple images (separately) in one window
768 independent axes on a figure will likely be problematicm, specifically the memory needed and the tiny size of each axis. To...

5 years ago | 1

Answered
Heatmap - number of decimal places on x-axis
Similar to Walter Roberson's answer but does not require undocumented methods (and avoids the associated warning). h = heatma...

5 years ago | 1

| accepted

Answered
replacing numbers with text
Here's a more flexible alternative. mymat= [ 4 4 4 3 4 4 1 4 4 4 3 ...

5 years ago | 1

| accepted

Answered
Create matrix from 2 columns of a csv file
Summary of comments under the question: Use readtable() to import the data Use table indexing rather than splitting the table ...

5 years ago | 0

Answered
Grid a plot with diagonal lines
ConstantLine objects extend to the axis limits even when the limits change but as of r2020b, ConstantLine objects can only be ve...

5 years ago | 0

Answered
For loop that keeps only the first result of a random number generator function for all the loop runs
Select a random seed for the generator and reset the generator every time you want to repeat the same results. https://www.mat...

5 years ago | 1

Answered
Resolving discrepancy between the number of surfaces generated and the number of surface handles stored in cell array
You're experiencing problems that often occur when loop variables are not preallocated. When i==1, the j-loop has 10 iteratio...

5 years ago | 0

| accepted

Answered
boxchart - many questions! Assign BoxFaceColors? separation lines? numeric xGroupData? Location of boxes? number of points?
boxchart vs boxplot >with r2020 there is finally a grouped boxplot called "boxchart". The boxplot() function also has grouping...

5 years ago | 1

| accepted

Answered
How to improve groups in boxplot matlab?
To add vertical lines that separate groups from the first grouping variable, add 'FactorSeparator',1. h = boxplot(L_levtrue,{ID...

5 years ago | 0

| accepted

Answered
How can I plot with different markers, linestyles and colors in a loop?
Ways to control color and line style 1. LineStyleCyclingMethod In MATLAB R2023a or later, the LineStyleCyclingMethod property...

5 years ago | 4

| accepted

Answered
how can i get the regression values into a variable in neural network
After the figure is created from the nntool and is the current figure, these lines below will extract the subplot title informat...

5 years ago | 1

| accepted

Answered
Editing the properties of box plot groups.
> I don't know how I can change the color of separator from gray to black. I wish boxplot returned graphics handles, but it doe...

5 years ago | 1

| accepted

Answered
Two simple questions about listdlg
No. listdlg does not have a fontsize property and is a modal dialog which suspends execution until a selection is made so there...

5 years ago | 0

| accepted

Answered
Convert 4 cell arrays into 4 columns in matrix
This answer shows how to combine column vectors of different lengths into a matrix with NaN values as fillers. https://www.mat...

5 years ago | 0

Answered
Plot base on index column
Read in your data as a table named T, then follow this demo ID = 1; rowIdx = T.ID == ID; plot(T.Z(rowIdx), T.dist(rowIdx))

5 years ago | 1

Answered
Unable to perform assignment because the indices on the left side are not compatible with the size of the right side. On for loop
Z(i) = C(i).*G G is a 1x4 vector C(i) is a 1x1 scalar when you multiply the two, you get a 1x4 vector You're trying to stor...

5 years ago | 0

| accepted

Answered
Timetable Variable grouped by year and stackedplot
Steps taken to break apart a timetable by years and plot in stackedplot The timetable is broken apart by year using arrayfun an...

5 years ago | 1

| accepted

Answered
How to Export appdesigner Plot and UITable directly to PDF?
See this summary of methods; pay attention to which Matlab release supports each method. https://www.mathworks.com/matlabcent...

5 years ago | 1

| accepted

Answered
Using the command "eval"
Don't use eval() at all. Matlab documentation: Alternative eval() Matlab Fandom: Why is it advised to avoid using the "eval" ...

5 years ago | 1

Answered
Array of Matrices multiplication
One way to approach this is to break up the 3x4326 matrix into a 3x3x1442 array. data = rand(3,4326); % 3x4326 matrix dataArr...

5 years ago | 0

| accepted

Answered
Apps empty although Matlab says Statistics and Machine learning toolbox is installed
I'm not sure why the app doesn't appear in your app list but if you have the Statistics and Machine Learning Toolbox you can ini...

5 years ago | 0

| accepted

Answered
Marker doesn't appear in plot3() legend
I assume eList contains a cell array of character vectors (or a string array) that define the legend strings. Try this, hol...

5 years ago | 0

| accepted

Answered
Why does my method doesn't recognise the variable U that I defined as global?
Don't use Global variables, especially in AppDesigner! Instead, declare variables that are shared between app functions as priv...

5 years ago | 4

| accepted

Answered
drawrectangle not working consistently, help!
In AppDesigner / uifigure & uiaxes, drawrectangle is horribly slow and does not show the rectangle borders immediately. It's so...

5 years ago | 0

| accepted

Answered
How to extract a part of the spectrogram?
Three approaches to selecting a range within a spectogram Use saveas to save figures as any format. 1. Simple xlim & ylim A s...

5 years ago | 1

| accepted

Answered
Please solve the following question
The variable diff is a 4x4 matrix. diff = 22 7 -4.5 10.5 29 2.5 ...

5 years ago | 0

Answered
How to make the y axis 'counts' and x axis the variable on Histograms
Set the orientation property to horizontal. histogram(rand(1,1000),'Orientation','horizontal')

5 years ago | 0

Answered
How create a matrix that matches a condition in comparison with other matrix?
A=[ 1 10 1 9 1 8 1 7 1 6 2 15 2 14 2 13 2 12 2 11 3 18 3 17 3 16 3 15 3 14 4 12 ...

5 years ago | 1

| accepted

Answered
How to plot a range with stackedplot()
As the error message indicates, you cannot specify both the Source Table and the XData/YData. You can either use indexing the ...

5 years ago | 0

Load more