Respondida
How to plot two isosurfaces in one figure?
Nayoung, It looks like there are 3 issues here: *1. Plotting two surfaces on the same axes* You are explicitly asking f...

alrededor de 9 años hace | 0

| aceptada

Respondida
Concatenation of 25 Histograms
Mansell, Without seeing how you are storing these histograms, it is difficult to answer. However, if you are using any of...

alrededor de 9 años hace | 0

| aceptada

Respondida
i want to plot this function
Sinaraper, Without going into the mathematics of that function, here is a strategy for tackling a complex plotting task. #...

alrededor de 9 años hace | 0

Respondida
Help Figure out the error
Joshua, Looks like there's a lot going on here. It appears that ode() is a function and you are attempting to pass two ar...

alrededor de 9 años hace | 0

Respondida
Possible to open file by text, go to file, quick open, quick search
Chris, I am not 100% sure I know the behavior you are after, but I might have something for you that comes close. It is the '...

alrededor de 9 años hace | 0

Respondida
changing the x axis candle stick chart
try |dateaxis| load disney; candle(dis_HIGH(end-20:end), ... dis_LOW(end-20:end), ... dis_CL...

alrededor de 9 años hace | 0

Respondida
Subplot: How can i set the size of my diagram in my subplot? (Size definition of each placeholder)
Grüße, Herr Mueller :) It was not clear to me if you needed your layout to be as described when you print, save to an image, ...

alrededor de 9 años hace | 1

| aceptada

Respondida
How to reference random GUI buttons?
There are a bunch of ways you could approach this problem - here are some possible approaches: *Method 1* The first approa...

alrededor de 9 años hace | 2

| aceptada

Respondida
Holding Plots In A Loop
Your sample code was missing some variable definitions, so there may be other issues, but here is what I see: Assuming that y...

alrededor de 9 años hace | 0

Respondida
joining two different datetime arrays
You can use vertcat to combine your column arrays of datetime objects vertcat( ... datetime({'Mon, Apr-25-16';'Fri, Mar-25...

alrededor de 9 años hace | 1

| aceptada

Respondida
exceeds matrix dimensions error. How to solve
Your code works as is for me. I ran this: % Generate random 184x4 vector of data dados_voo = randi(800, 184, 4); ...

alrededor de 9 años hace | 0

Respondida
Get Maxima from changing areas with max command
You can index a range of TempR1 using values from your PV_Change vector. Think: dataSet( indexVector(1:2) ) Here is an ex...

alrededor de 9 años hace | 1

Respondida
Make a point move around randomly as if it were a person walking
Your indexing errors stem from: r1x(T,T) You are asking for the Tth row and Tth column. That means after your second cyc...

alrededor de 9 años hace | 0

Respondida
How to prevent accidental deletion of axes by user (select tool and delete key)?
I know it's bad form to answer your own question, but here I go anyway: I still can't find a way to present our users an opti...

alrededor de 9 años hace | 0

Respondida
If I have a matrix of 100 rows by 5 columns, how can I make it a 1 row x 500 column matrix, where each row (1x5) is placed one after the other to make a 1x500 matrix?
You can use reshape: A = randi(10,100,5) B = reshape(A,1,500) * A will be a 100x5 matrix * B will be a 500x1 matrix ...

alrededor de 9 años hace | 0

Respondida
Consider i have an image 'abc.jpeg' which is a RGB image how do i convert it to Grayscale without rgb2gray() func????
You can see how TMW does it with open rgb2gray The entire function is available for you to read. Also, there are many...

alrededor de 9 años hace | 0

| aceptada

Enviada


Suppressible Command Window Debug Output
debugout() provides debugging messages that can be suppressed with debugmode(false)

alrededor de 9 años hace | 1 descarga |

0.0 / 5
Thumbnail

Respondida
How can I select a graph by mouse clicking and delete it?
If you need to do it programmatically, Geoff seems to have nailed it. If you are using any of Matlab's built-in toolbar items...

alrededor de 9 años hace | 0

Pregunta


How to prevent accidental deletion of axes by user (select tool and delete key)?
Some of our users have been complaining that when modifying/deleting annotations from plots, they inadvertently delete the axes ...

alrededor de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How can I display the progress of textscan
I am using textscan to read and parse data files that vary widely in size. For small files it is very fast, but it is not uncomm...

alrededor de 11 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Why does get(handles.editbox, 'String') return a char when the box is empty but a cell for all other cases?
Is this expected behavior or is it a bug? I finally tracked down a frustrating bug to this behavior, as I was tacking the con...

alrededor de 11 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How do I maintain user settings or preferences in a deployed application from run to run?
*Deployed Application with customizable user settings that persist on subsequent executions* I have a configuration variable ...

alrededor de 11 años hace | 0 respuestas | 0

0

respuestas