Answered
BoxChart box position doesnt match xaxis label when 'groupbycolor'
The example you shared from the documentation (link) uses grouped data. Groups are centered around the x-ticks. If you are mis...

4 years ago | 0

| accepted

Answered
Geobubble with specifing radius and discretize
The sizedata argument in geobubble determines the relative sizes of the bubbles. If you want to specify the absolute size of th...

4 years ago | 0

Answered
Histogram bin location to place text for categorical data
Since you x-data are categorical, you're working with a categorical ruler. This makes it difficult to position text at numeric ...

4 years ago | 1

Answered
tiledlayout no spacing display in 2x3 grid
imshow fits the axes to your image size. Use axis normal if you don't want the axes to tighten. This will distort your image...

4 years ago | 0

Answered
Change font size on plot but it's cut-off
Suggestion 1: used tiledlayout Axes produced in tiledlayout usually handle these situations better. Suggestion 2: check the P...

4 years ago | 0

Answered
“chasePlot” doesn't show ego vehicle
chasePlot is outside my area of expertise but I did some digging found that if you change the ViewLocation of the scene then you...

4 years ago | 0

| accepted

Answered
loop for removing highest value until specific value is reached
A = randi(13,10); while sum(A,'all','omitnan')>20 [~,idx] = max(A(:),[],'omitnan'); A(idx) = NaN; end isRemove...

4 years ago | 0

| accepted

Answered
How to plot a graph like hist without using hist
>but when I use hist it omits the equal values hist does the binning, counting, and produces the plot. If "17" occurs 3 times,...

4 years ago | 1

Answered
Creating a string with Permutation
I believe this is what you're working toward. Axes_name = {'sint0.2';'sint0.5';'sint0.7'}; fold_2 = {'BCA';'BPCA';'DLA';'DLCA'...

4 years ago | 0

| accepted

Answered
Saving multiple figures together to a PDF
Thanks for providing the code! The question title makes it seems like you're plotting multiple figures but your code shows that...

4 years ago | 0

Answered
Plot and bar with descending data and double yaxes
You're adding the green line to the left y-axis. Switch these two lines plot(y1,'green') yyaxis right % to yyaxis ri...

4 years ago | 0

Answered
Which Anova test and how to use it?
I recommend using bootstrapped confidence intervals. The idea is to resample your accuracy data with replacement and compute th...

4 years ago | 0

Answered
How to make a matrix with mixed string and number elements ?
I think this is your goal N = 10; M = 4; str = compose("x%04d",1:N*M); A = reshape(str,M,N)' Note that this is referred to...

4 years ago | 1

| accepted

Answered
Save matrix as a spreadsheet image
Storing numeric data in images makes it difficult to work with those data later on but I remember a use-case for this back when ...

4 years ago | 0

| accepted

Answered
how to return cell array with varargout?
myCell = cell(1,3); [myCell{:}] = myfunc(__)

4 years ago | 0

| accepted

Answered
app will dispear when using uisetcolor as colorpicking function
uisetcolor is a modal dialog meaning it blocks interaction with other windows until the user closes it. After the dialog is clo...

4 years ago | 0

Answered
Get data from xls file.
> i need a comand to check the numbers in column A and anywhere that 6 change to 7 show me the entire rows for last 6 and where...

4 years ago | 0

Answered
how can i add the numers on the heatmap?
The cell values in heatmap appear when the figure is large enough to fit them in. Increase your figure size or decrease the den...

4 years ago | 0

Answered
meaning of exponential factor in MATLAB output
1.0e-112 is 100 septrigintillionths or or 0.0000.....1 where there are 111 zeros to the right of the decimal place. Multipl...

4 years ago | 1

| accepted

Answered
How to add numerical value in the stacked bar chart
Follow this example that uses XEndPoints and YEndPoints bar properties to compute the center of each stacked bar. The text show...

4 years ago | 0

| accepted

Answered
Problem with splitapply (bin averaging)
The grouping variable in splitapply is expected to be a vector of positive integers 1 to n and cannot contain a missing group va...

4 years ago | 0

| accepted

Answered
Finding weighted sum of multiple curves
The first step of applying a weighted sum is to define the weights so until you know that, you can't use that method. Instead,...

4 years ago | 0

| accepted

Answered
When I click an image, it doesn't enter its callback
See Callbacks in App Designer. Try this: image(dispImg, 'Parent', app.UIAxes, 'ButtonDownFcn', @(src,event)ImageClicked(app,sr...

4 years ago | 1

| accepted

Answered
Creating a polar bar chart or circumplex chart (not a histogram)
See polarhistogram. If you have data suitable for a bar plot and, therefore, you don't need to compute the bins and bar heights...

4 years ago | 2

| accepted

Answered
Take 102 Elements Equally Spaced of an Existing Array
> Is there a way to solve this issue? No. 991 is not divisible by 102. The following is a 102 vector starting with 1 and end...

4 years ago | 1

| accepted

Answered
Readtable don't work correctly if 'Range' > 'A250'
Update: The 250 line limitation is no longer a problem starting in MATLAB R2023a. Thanks for reporting this. Workaround prior ...

4 years ago | 1

| accepted

Answered
how can I plot a graph over an image in Matlab?
Plot the image using image or imagesc or some other image function that allows you to specify the x and y values of the image. ...

4 years ago | 2

Answered
Accessing cell array contents
See cellfun In this example, the cell array is named myCellArray and the variable is named myVar. y = cellfun(@(A)A.myVar(en...

4 years ago | 2

Answered
Converting wind/wave data to hourly data by interpolation
If the durations are consecutive, then I suggest creating an time stamps based on the durations which allows you to use retime t...

4 years ago | 0

| accepted

Answered
How to plot correlation coefficient matrix plot?
Assuming you already have the correlation matrix, use heatmap. The upper triangle can be filled with NaNs. S = load('Data_Can...

4 years ago | 2

Load more