Answered
Heat Map Cell values display
The imagesc demo in this answer produces a plot nearly identical to a heatmap and the last line allows you for format the cell l...

5 years ago | 0

| accepted

Answered
Create and fill cell array with differntly sized arrays within a function
The size and shape of data you're working with is not clear but I'm guessing from the first for-loop in your question that dat...

5 years ago | 1

| accepted

Answered
What is best practice to determine if input is a figure or axes handle?
I find myself revisiting this page from time to time and wanted to share an alternative best practice to determine if an array o...

5 years ago | 0

Answered
How do I prevent the pointer change when I bring the mouse cursor to a graph in a figure? (Regarding the mouse pointer update in r2020a)
To prevent the datatip cursor from appearing when hovering over a graphics object, fig = figure(); fig.PointerMode = 'manual'...

5 years ago | 1

Answered
Changing axes linewidth on a stacked plot
You have to access the axis handles first. h = stackedplot(rand(10,4)); ax = findobj(h.NodeChildren, 'Type','Axes'); % use ...

5 years ago | 0

| accepted

Answered
Random generator with constraints
> I am getting back into MATLAB and need to create a random generator that provides a matrix of 12 rows by 4 colums of numbers f...

5 years ago | 0

| accepted

Answered
Matlab Zeros, What type of matrix will I get from this?
> could someone tell me what do I get from this operation Assuming your variables are scalar (1 value) or, when multipled, pro...

5 years ago | 0

| accepted

Answered
How to find average monthly wind velocity values for given years?
Use groupsummary to compute the means for 12 months across all days/years. Demo: T = table((1:10)', randi(12,10,1), 2017.*one...

5 years ago | 0

| accepted

Answered
How to draw bar graph of different colors ?
This has been addressed in the forum many times. Examples: https://www.mathworks.com/matlabcentral/answers/553894-barcharts-...

5 years ago | 1

Answered
How use pcshow in GUI
The error message indicates "Functionality not supported with UIAxes". Also, the documentation for the Parent property in pcsho...

5 years ago | 0

Answered
Change background color of uitable row name fields
In Matlab r2019b and later, use addstyle() to control color of cells in a uitable. The uitable must be within a uifigure (such ...

5 years ago | 0

Answered
How to move the data to the right
It sounds like you need to shift the data to the right by adding a constant value to the x-coordinates and then assign the orgin...

5 years ago | 0

Answered
Loop for concentric squares
Vectorized version, sz = 20; % matrix size, square, positive integer difference = 2; % width of bands, positive inte...

5 years ago | 0

| accepted

Answered
get a field value from all elements of a structure
z = [s.A.B];

5 years ago | 0

| accepted

Answered
Alternative for nested for loop
> Is there a simpler way to do this? As long as you're preallocating the JV cell array, your approach is very simple, fast, and...

5 years ago | 2

| accepted

Answered
find intersection points of a line and a curve.
There are several ways to get the x values at each intersection of the y-value. The simplest solution is to use the intersection...

5 years ago | 2

| accepted

Answered
Data is not contained within x-axis limits
Get the handle to the line object and look at the Clipping property. If it's set to 'off' figure out what part of the code chan...

5 years ago | 0

Answered
progress bar in app design (GUI)
Step 0: Set up the app button Add a button to your app and add a ButtonPushed callback function. Importantly, the height of th...

5 years ago | 5

| accepted

Answered
Change title in anovan boxplot
% Generate table y = [52.7 57.5 45.9 44.5 53.0 57.0 45.9 44.0]'; g1 = [1 2 1 2 1 2 1 2]; g2 = {'hi';'hi';'lo';'lo';'hi';'hi'...

5 years ago | 0

| accepted

Answered
How do I change datetime format in stackedplot on X-Axis?
In case anyone is still looking for this solution, % Create stacked plot, set xdata as datetime values % The XData can also ...

5 years ago | 1

Answered
How can I get DataCursor information from stackedPlot on ButtonDown callback function?
This solution uses undocumented methods of obtaining the data tip lables (see inline comments). As with all undocumented approa...

5 years ago | 2

| accepted

Answered
Can I make sound and soundsc not make a sound when playing a constant value?
> I was exploring what a ramp sounds like [using 1:10000] I think you're interpretting the audio data incorrectly but to your d...

5 years ago | 3

| accepted

Answered
How to change the order of sections in a .mlx file?
The ol' fashion copy-paste is the only way I know of. I wouldn't be eager to support the ability to drag and drop blocks of cod...

5 years ago | 2

| accepted

Answered
Global Variables and Functions
Assign B,C,p as outputs to bifurcation_host_pops(). Do not use global variables. And in the future, please copy-paste code a...

5 years ago | 0

Answered
How can i alternating signs in every line in a loop
To flip the sign of every second column of a matrix, starting with column 2, M(:,2:2:end) = -1*M(:,2:2:end); Note that this m...

5 years ago | 0

Answered
Grouped Bar Plot with NaN GAP
I agree with everyone's comments under you question; the bar plot is much clearer with the gap. Both the color and bar order,...

5 years ago | 0

| accepted

Answered
HOW TO PLOT THE INTERVAL OF t AND SIN
Here are the tools you'll need. These are basic Matlab 101 tools that you'll use a lot in Matlab. Define t using the colon op...

5 years ago | 0

Answered
How do I create a Matlab 5x5 matrix of numbers 1-100?
Use X=randi(100,1,5*5) to get random integers <=100 or x=rand(1,5*5)*100 if you want floating decimals. Then use sort() to ac...

5 years ago | 1

| accepted

Answered
How to count the number of points above and below a line
Let's say x stores all of the x-values of your coordinates. Compute the y-value on the line for each x-value. yLine = m.*x + ...

5 years ago | 0

| accepted

Load more