Answered
How to average over different length vectors without excessive for loops?
I suggest collected all of the variable-length row-vectors within a cell array, then organize them in a matrix and use NaN to pa...

5 years ago | 4

| accepted

Answered
How to set the grid of the right yyaxis?
As KALYAN ACHARJYA mentioned, the grid lines reference the left axis. Workaround Set the vertical grid lines ax = gca(); ...

5 years ago | 1

Answered
Graphs behaviour after tiledlayout, stackedplot or subplot functions
When you call heatmap in the line below you're still using the 2nd axes in the tiledlayout created above. That's why the heatma...

5 years ago | 0

| accepted

Answered
organize vector, difference between adjacent elements of a vector
A=[ 3 ,10, 55 ,100 ,888]; z = cumsum(diff([2,A]))

5 years ago | 0

| accepted

Answered
ConstantLine always on the top
Control the layer of a ConstantLine or ConstantRegion Here are several solutions covering several MATLAB releases. R2024a or ...

5 years ago | 5

| accepted

Answered
sum of row in pattern
Data= [ 1 4 0.0000; 2 7 0.0000; 3 9 0.0000; 4 5 0.1760; ...

5 years ago | 0

Answered
Bar diagram as subplot in a for loop from a cell
The goal is unclear but I think this is what your looking for, number = numel(data); for i = 1:number p{i} = polyfit(x_...

5 years ago | 0

| accepted

Answered
How do I change the order of objects in the App Designer component browser?
For Matlab r2020b and later, the stack order of UI components can be changed using the reorder tool (see release notes). For ...

5 years ago | 0

Answered
stackedplot and linear fit
> i was just wondering if they was any way i could put a linear fit line and get its data from stackedplot? If you're creating ...

5 years ago | 1

| accepted

Answered
How do I change the size of subplots in stackedplot
You can get the axis handles of stackedplot using the undocumented NodeChildren property. Use flipud to set the axis handles in...

5 years ago | 0

Answered
How to use stackedplot in app designer ?
> Is there any way to use stackedplot with UIAxes in app designer Yes. Parents of stackedplot can be set to Figure object |...

5 years ago | 0

Answered
Insert text in stacked plot points
stackedplot does not return the axis handles which is needed to place the text objects but you can get the axis handles using th...

5 years ago | 0

Answered
Latexlabels and Legend Location in Stackedplot
> I want my y-labels to be interpreted by latex See this answer. > I want to make my Legend horizontal above the plot. We...

5 years ago | 0

Answered
table stackedplot with log y-axis
Update: In Matlab R2021b or later, set the yscale property of stackedplot to log. Prior ot R2021b, you can set the scale of t...

5 years ago | 0

Answered
Zooming and linking axes when using 'stackedplot'
>Is it possible to use the interactive zoom function with a stacked plot? Yes, zoom interaction is on by default in stackedplot...

5 years ago | 0

Answered
Combining two stacked plots
Seth Furman's suggestion to concatenate the data prior to creating the stackedplot is a good approach. If that is not an option...

5 years ago | 0

Answered
linkaxes of different stackedplots
I found a solution (weeks later) using the undocumented NodeChildren property to get the axis handles. Instead of using the su...

5 years ago | 0

Answered
labels of stacked plot
>The ylabels are aligned horizontally. I'd like to know how to align vertically. See this answer. > Also , how can we define...

5 years ago | 0

| accepted

Answered
Add xline equivalent to stackedplot?
You can get the axis handles in stackedplot using the undocumented NodeChildren property. Then use xline to add vertical referen...

5 years ago | 2

| accepted

Answered
stackedplot without yticklabels?
See this answer for an undocumented method of change the ytick values in stackedplot. To clear the ticks, you'll change the la...

5 years ago | 1

Answered
Is it possible to change stackedplots background color?
You can get the axis handles in stackedplot using the undocumented NodeChildren property. Then change background color. rng('de...

5 years ago | 3

Answered
Rotate stacked plot Labels to have them vertical - App Designer
You can get the axis handles in stackedplot using the undocumented NodeChildren property. Then rotate and center the labels. r...

5 years ago | 6

Answered
Change yticks using a stacked plot
You can get the axis handles in stackedplot using the undocumented NodeChildren property. Then set YTick. rng('default') h = s...

5 years ago | 10

Answered
How to reverse x-axis in a stacked plot.
You can get the axis handles in stackedplot using the undocumented NodeChildren property. x = [4 3 2 1]; y = [2 3 4 5; 3 4 5 6...

5 years ago | 1

Answered
Distance between points in a table
>I have a table containing the (x,y) coordinates and I need to find the distance between each point [without using pdist | pdist...

5 years ago | 0

Submitted


stackedaxes() - an alternative to stackedplot
STACKEDAXES produces stacked plots similar to Matlab's stackedplot() but returns graphics handles allowing the user to modify th...

5 years ago | 2 downloads |

5.0 / 5
Thumbnail

Answered
Highlight y-max
plot(x_val,y_val); hold on; [~,idx] = max(y_val); plot(x_val(idx),y_val(idx),'r*') text(x_val(idx),y_val(i...

5 years ago | 0

| accepted

Answered
Number of digits in heatmap plot
I think what you mean is that your heatmap values contain 2 decimal places except for integer value and you want to include two ...

5 years ago | 9

| accepted

Answered
data loop for matlab
Read data in as a table (see readtable) Convert the year-month-day columns to a single datetime vector and convert the table to...

5 years ago | 0

| accepted

Answered
How to plot f: y=e^-x.sin^2x function in matlab?
Errors to fix (numbers refer to the characters above the numbers) f: y=e^-x.sin^2x % 1 2 34 5 f: is not valid matla...

5 years ago | 2

Load more