Respondida
Why does ycolor also color the xaxis?
With plotyy, you can use the output arguments to get access to the 'right' axes. Setting the property on gca would just affect t...

alrededor de 2 años hace | 0

| aceptada

Respondida
Unable to set ticks on a colorbar
If you want your color to range from 1002 to 1018: caxis([1002 1018]) % or set(gca,'CLim',[1002 1018]) This will let you la...

alrededor de 2 años hace | 0

| aceptada

Respondida
How to prevent contour plot from setting axis limits?
contour doesn't reset the limits, perhaps you didn't set hold to on? or didn't specify x and y for your contour? If you're still...

alrededor de 2 años hace | 0

| aceptada

Respondida
MATLAB: combine two cell arrays of string at a specific position
If I understand the question correctly, you can just specify the indices where you want your strings to go. A={'Moose';'Goos...

alrededor de 2 años hace | 0

Respondida
Autoregressive model for EEG feature extaction
ARfit is a collection of tools for AR models: https://www.mathworks.com/matlabcentral/fileexchange/174-arfit SIFT is a set of E...

alrededor de 2 años hace | 0

Respondida
Make Equal tick spacing in a loglog plot
If you want n logarithmically spaced ticks (which would appear linearly spaced on a log plot, you should just set the ticks to b...

alrededor de 2 años hace | 0

| aceptada

Respondida
Axis scale on a subplot log graphics
When you want to match the axis limits, a helpful trick is to store the handles to each axes so that you can later query/set the...

alrededor de 2 años hace | 1

| aceptada

Respondida
How to find number of pixels (or matrix count) in a group in a given imagesc or data
There are a few functions for finding little regions like this, but if you have the Image Processing Toolbox you might consider ...

más de 2 años hace | 1

| aceptada

Respondida
Receive Error using / Arguments must be numeric, char, or logical when I am using histogram
histogram returns a graphics object, so when you try to divide that by n you'll get an error. If you're looking for the values ...

más de 2 años hace | 0

| aceptada

Respondida
problem in sorting an array with "sortrows" command
A good way to sort one array using the order of another is with the second output argument of sort: timeorder=[3.4,7,1,8,5.1,9]...

más de 2 años hace | 0

| aceptada

Respondida
A question about adjustment the Histogram2 Properties
For the first bit, you can set the EdgeColor to 'none'. For the second bit, getting 'squares' depends on both the fact that bin...

más de 2 años hace | 1

| aceptada

Respondida
How to use a for-end loop to load in 6 xlsx files and plot all the data within them on one plot?
I guess you have two options about how you're going to tell MATLAB about all those xlsx files - either you're going to construct...

más de 2 años hace | 0

Respondida
setting the "hold" property for axes
The hold function corresponds to the NextPlot property on the Axes. I realize that's a little confusing - hold has only two st...

más de 2 años hace | 1

| aceptada

Respondida
Bar graph grouped with two y axis
bar graphs don't collaborate between sides of a yyaxis very well, but you can fake it by padding with zeros: x = categorical({'...

más de 2 años hace | 2

| aceptada

Respondida
Please help, i have the idea of what I'm wanting to find but do not know how to actually code this!
How about something like this: % You might consider readmatrix or readtable instead of load... % But load works for such simpl...

más de 2 años hace | 1

Respondida
Help creating xbar control chart
You specified x as a vector, but controlchart doesn't accept x as a vector. controlchart is going to use means and limits, and i...

más de 2 años hace | 0

Respondida
Plot multiple tables from workspace using for loop
If you want to reference the tables as you describe, you'd need them in an array (in C, or in MATLAB): t1=table((1:10)',rand(10...

más de 2 años hace | 1

| aceptada

Respondida
Parse error at "t"
When you multiply in MATLAB you need a * symbol r = -10*e-1.8t; should be r = -10*e-1.8*t;

más de 2 años hace | 1

| aceptada

Respondida
How to do the check box in GUI app designer ??
You should not use global, roi should probably be a property on your app. But I think to prevent it from being deleted, you nee...

más de 2 años hace | 0

| aceptada

Respondida
How can I insert a bunch of 6x6 matrices into a larger 30x30 matrix?
I think you're saying: you have an existing 30x30 matrix and some existing 6x6 matrices, and you want to put the values from one...

más de 2 años hace | 0

Respondida
Plotting polarplot with 2 months in each from a 12 month dataset
You didn't say much about what's going wrong, but one thing I noticed is that your hold on statements are in the wrong spot. You...

más de 2 años hace | 2

| aceptada

Respondida
Finding the indexes of values of one vector to another Matlab
What you described here is the second output of sort: a = [13.8487, 20.8059, 23.5011, 23.2286, 22.2261]; [sorted_a,com...

más de 2 años hace | 0

Respondida
Repeating elements of an array
There are two really useful repeat functions: repmat and repelem repelem is good for repeating an element n times, so I think...

más de 2 años hace | 0

Respondida
hist error: Input arguments must be numeric, but all my input is numeric?
From your description it sounds like when you called readtable, it read the values as strings rather than numbers. When you call...

más de 2 años hace | 0

Respondida
Help normalizing data in table
When you want to work with multiple variables in a table at once, you have to use { } (this is because tables work with heteroge...

más de 2 años hace | 2

| aceptada

Respondida
spectrogram - auto settings for zlim are too wide
I'd guess that the color limits (i.e. CLim not ZLim) are tightly fitting the data, but you have a pixel or two that is making it...

más de 2 años hace | 0

Respondida
How to plot Histogram/bar graph for two data sets!!
I think there are a few ways to interpret your question. Do you mean you want to show two bar charts describing the histogram ...

más de 2 años hace | 0

| aceptada

Respondida
Using multiple functions on a variable in a table
How about just initializing the new table variable first (e.g. with NaN values) and then populating it using your indices? T ...

más de 2 años hace | 0

Respondida
How to create a standalone executable file?
You can create standalone executables using MATLAB compiler. A product information page is here: https://www.mathworks.com/pro...

más de 2 años hace | 0

Respondida
3D surface plot
You can interpolate using a scatteredInterpolant to make a matrix over the range of X and Y and then use surf to draw it, but I ...

más de 2 años hace | 1

| aceptada

Cargar más