Réponse apportée
Creating submatrix with variable indexing
The code below isn't elegant, but it should do what you want. The example is for just 2x2xN. Despite the name, the slow method i...

plus de 6 ans il y a | 0

Réponse apportée
Why won't matlab plot data from a table?
You're trying to plot a scalar multiple times, which Matlab happily does for you. You won't see anything, because your line styl...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Why is this so slow?
Loops with many elements are slow. You also forgot to properly pre-allocate s. N = 10^5; a = 0; b = 4; r = a + (b-a)*rand(N,...

plus de 6 ans il y a | 2

Réponse apportée
买了可以用多久
In general you can use the student version for as long as you are a student. Note that officially you can only use the student v...

plus de 6 ans il y a | 0

Réponse apportée
campare a row value with the next row
You were close when using diff. You need to think what characterizes all four combinations. The code below should be what you ne...

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
Pass variables from callbacks to custom functions in a GUI
I'm going to assume the error occurs at this line guidata(app, handles); You are mixing a GUIDE-style GUI syntax with an AppDe...

plus de 6 ans il y a | 1

Réponse apportée
How to Turn Imagesc to x and y?
You can generate the coordinates with ndgrid and then you can linearize the three matrices and use them as input to plot3. ...

plus de 6 ans il y a | 1

Réponse apportée
How do I sum the outputs of a for loop?
Create a variable before the loop and set it to 0. Inside the loop you can add the value of Winnings to this variable.

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
creating new matrix from remaining of existing 2 matrices
Use ismember with the rows switch to find the rows in A that exist in B, flip this logical vector with ~ and use the result to i...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Error due to matrix dimensions not being consistent
You have shadowed the internal function mtimes which is used when you use the * operator. Renaming your function should solve th...

plus de 6 ans il y a | 0

Réponse apportée
how to assign certain range of pixel values with desired color for classification of image?
What you need to do is replicate your grayscale image to three channels to make it an RGB image. Then you can modify the the col...

plus de 6 ans il y a | 1

Réponse apportée
Add a box with error metrics in plot
You can add information to a plot with an annotation, or you can use the rectangle and text functions. The code below will read ...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Run cmd command from MATLAB
You should not set the PATH, but you should use cd instead to change the directory inside your system call. I personally pre...

plus de 6 ans il y a | 0

Réponse apportée
remove zeros from a 15x300 matrix and find the median
You can use this inside your loop. AS_V(i)= median(AS(AS~=0));

plus de 6 ans il y a | 0

Réponse apportée
Generate row vectors that match indexes
The code below will sample points over a parabola, since three points fully determine a second order polynomial. The middle poin...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How can I count the number of times a value occurs
You can use bwlabeln to label all your non-zero regions. then you can loop through each of the labeled regions to determine whic...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How to set value in a matrix
This was a fun puzzle. I believe the code below is one of the many possible solutions. It does use implicit expansion, so for pr...

plus de 6 ans il y a | 3

Réponse apportée
Why the line is not shown in the graph?
You are not indexing the trans variable inside your loop, which results in you overwriting the value every loop iteration. That ...

plus de 6 ans il y a | 0

Réponse apportée
how to plot smooth line plot?
The code below generates some example data and then interpolates the data in the loglog domain. %generate some example data X=...

plus de 6 ans il y a | 0

Réponse apportée
Need Help about this for loop
You are reusing i as a loop index multiple times. The mlint also warns you about that. It is a good idea to resolve all warnings...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How to close the figure contain the uifigure after the alert is closed?
The figure you specify does not actually contain the alert. The function only requires an input to determine where the alert box...

plus de 6 ans il y a | 2

| A accepté

Réponse apportée
Adjust intervals of x-axis in the plot!
You can directly set the tick locations with the xticks function. Since your variable is already a datetime (and not datenum), y...

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
I need to scale the axes of a convolution function after plotting successive convolutions of x with itself. How do I scale the x axis for each so it has the correct support and how do I scale the convolutions to show that they are density functions?
Something like the code below should be close to what you want. Addapt as needed. y=ones(1,20); N=10; output=cell(N,1); ou...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Vector averaging with mean command
A faster method than a for-loop is using movmean and throwing out the results you don't need. This will also take care of the ca...

plus de 6 ans il y a | 1

Réponse apportée
Does matlab have any function that can compare multiple numbers and return logical value zero or one?
Another of the many strategies: count the number of elements a unique() call gives you. (when I'm back at a computer I'll test t...

plus de 6 ans il y a | 0

Réponse apportée
how to plot roc curve.....
Given your data, this is the ROC curve. In general the code below is added, but that is optional. hold on, plot([0 1],[0 1]...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
While loop - Factorial
You need to repeat the exact same code until some condition is true. The easiest way to do that is with a while loop: n=-1;%set...

plus de 6 ans il y a | 0

Réponse apportée
create a input dialog with text entry and also drop down menu
The easiest is probably to create a tiny GUI. More general tips can be found here, but the basic idea is something like the code...

plus de 6 ans il y a | 1

Réponse apportée
Is there an error in the code?
You haven't converted the number to a date yet and you had a typo in your variable name. Also, 1998/01/01 was a Thursday. Day =...

plus de 6 ans il y a | 0

Réponse apportée
Close a figure when a button is pressed or when a certain elapses
You can set 'close(gcbf)' as the callback of your button, and you could use a timer object to trigger a close as well.

plus de 6 ans il y a | 0

| A accepté

Charger plus