Respondida
Coloring scatter plot based on count number
Unchanged base code time = ({'25-Jul-2018 00:00:00';'25-Jul-2018 00:15:00';'25-Jul-2018 00:30:00';'25-Jul-2018 00:45:00';'25-Ju...

casi 5 años hace | 1

| aceptada

Respondida
separate strings that are inside a cell
If your goal is to simply be able to read those lines, use cellfun to identify elements of cell array "C" that have more than on...

casi 5 años hace | 1

Respondida
Basic example of cellselectioncallback
CellSelectionCallback documentation Example in the documentation The solution to your goal will look something like this where...

casi 5 años hace | 0

| aceptada

Respondida
percentages deviations during sampling physical distance with "current point" on different monitors with different resolutions
I cleaned of your snippet of code and left comments where I've made changes. I've also added a horizontal ruler with 1cm tick...

casi 5 años hace | 0

Respondida
How do I sort data based on another variable?
If and only if two vectors have the same number of elements, you can sort vector b according to the sorted vector a using, [aS...

casi 5 años hace | 1

Respondida
How to normalize rows using retmap.
I don't know what retmap is (did you mean repmat?) Anyway, this normalizes the matrix by rows as you described, % sample data...

casi 5 años hace | 0

Respondida
How to define a sequence that goes two directions
[12:-6:-12, 12:6:36]

casi 5 años hace | 0

| aceptada

Respondida
How to debug error "Index in position 1 exceeds array bounds"?
> " How to debug error... " That's the right question to ask (+1). Knowing that there would be an error, I started by setti...

casi 5 años hace | 0

| aceptada

Respondida
Plot disappears when trying to interpolate
Plotting an alphaShape creates a patch object. When set to interp, the EdgeColor property requires existing CData or FaceVertex...

casi 5 años hace | 0

| aceptada

Respondida
Hello, can anyone help me to find the count of mushrooms from an image?
I'm an enthusiastic novice in image analysis so I'm not confident that this is the best (or even a good) solution but it might h...

casi 5 años hace | 1

Respondida
How to test if values are close togather using p-value (ttest)
The ttest assumes that data come from a normal distribution and that a reasonable large sample size is used. Your sample data a...

casi 5 años hace | 0

Respondida
How do you print the F-stat in a multcompare test?
You are performing a one-way ANOVA which means your null hypothesis is that there is no difference in the population means of yo...

casi 5 años hace | 0

| aceptada

Respondida
Why can't I use mapcaplot?
See the documentation. The data input should be a numeric array or a DataMatrix object. Yours is a table. Also see table2arr...

casi 5 años hace | 0

| aceptada

Respondida
How to get rid of this warning which point at extra entries?
Assuming [b2, b1] produces a vector with 4 handles, try this legend([b2,b1], labels{:}) or this labels = {'Electricity consum...

casi 5 años hace | 1

| aceptada

Respondida
Stacked bar chart with errorbars
hold on % <--- you forgot this errorbar(x',y',err,'k','linestyle','none','HandleVisibility','off'); Also, you can replace the...

casi 5 años hace | 0

| aceptada

Respondida
Spacing Xticks in plotting a function
"Value must be a vector of increasing datetime values." set(gca, 'Xtick', (0:100:1200), ... Those values above are not datetim...

casi 5 años hace | 1

Respondida
How to store data from DialogApp in CallingApp while closing the DialogApp in App Designer?
Follow this demo (attached). If you have any trouble, let us know where you're at and we can help you get unstuck. App1 gen...

casi 5 años hace | 0

Respondida
How to kill all figure windows in MATLAB?
Update close all force % or close('all','force') In R2016a, Matlab introduced uifigure which has hidden handles by default s...

casi 5 años hace | 1

Respondida
plotting confidence interval and creating second axis in one plot
Here's a demo that should get you started. The alignment of y=0 on the right axis with the first data point at "x" is done at ...

casi 5 años hace | 0

| aceptada

Respondida
How to binning 2-d data ?
This approach uses repelem() to generate group IDs by rows. data is the input matrix. nRows specifies the number of consec...

casi 5 años hace | 0

Respondida
App Designer. Should I use app functions or external fuctions?
> I noticed that the "same" operations are now much slower and crashing more often than when I was not using the App designer, s...

casi 5 años hace | 1

| aceptada

Respondida
Remove trailing zeros while making matrix
When combining real and compex numbers within a single array, the array will appear in compex format. Here are some ways to form...

casi 5 años hace | 0

| aceptada

Respondida
How to return an array without points in the edge?
Use the logical outputs to the inpolygon function. [in,on] = inpolygon (kn, xq ,xv, yv); on indicates all data that are on the...

casi 5 años hace | 0

Respondida
Figure in a tab group in app designer
> is there any other reason to call 'm' files instead of just putting the code in that callback? IMO there are 2 reasons to c...

casi 5 años hace | 0

Respondida
How to find the intersection a root locus plot and a line with specific angle?
There may be an analytical approach that would be better than this approach but one way to do it is to get the handle of the blu...

casi 5 años hace | 0

| aceptada

Respondida
How to make vertical stripes line contour plot?
dt = datetime(01,01,2000) + calmonths(0:59); % row vector vals = rand(size(dt))*6-3; % vector (row or col) plot(dt,vals,'ks') ...

casi 5 años hace | 0

| aceptada

Respondida
How can i plot a boundary line in contour plot
Copy of original code with the following changes. contour(k_x,k_y,g,500) chaanged to contour(k_x,k_y,real(g),500) Commented...

casi 5 años hace | 0

| aceptada

Respondida
How to avoid clearing workspace in MATLAB App button ?
> I want it should work on matlab workspace . Bad idea. This defeats the purpose of an app which is to allow users to interact...

casi 5 años hace | 0

| aceptada

Respondida
polarplot app.panel with condition in app designer
I think the problem is that you're not specifying the axes but that doesn't explain why a blue dot appears and you should have s...

casi 5 años hace | 0

| aceptada

Respondida
my plot won't show graph
That's because there's only 1 point and it takes >=2 points to form a line. By default, plot() does not show markers, only line...

casi 5 años hace | 1

| aceptada

Cargar más