Risposto
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...

oltre 6 anni fa | 0

Risposto
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...

oltre 6 anni fa | 0

| accettato

Risposto
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,...

oltre 6 anni fa | 2

Risposto
买了可以用多久
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...

oltre 6 anni fa | 0

Risposto
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...

oltre 6 anni fa | 1

| accettato

Risposto
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...

oltre 6 anni fa | 1

Risposto
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. ...

oltre 6 anni fa | 1

Risposto
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.

oltre 6 anni fa | 1

| accettato

Risposto
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...

oltre 6 anni fa | 0

| accettato

Risposto
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...

oltre 6 anni fa | 0

Risposto
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...

oltre 6 anni fa | 1

Risposto
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 ...

oltre 6 anni fa | 0

| accettato

Risposto
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...

oltre 6 anni fa | 0

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

oltre 6 anni fa | 0

Risposto
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...

oltre 6 anni fa | 0

| accettato

Risposto
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...

oltre 6 anni fa | 0

| accettato

Risposto
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...

oltre 6 anni fa | 3

Risposto
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 ...

oltre 6 anni fa | 0

Risposto
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=...

oltre 6 anni fa | 0

Risposto
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...

oltre 6 anni fa | 0

| accettato

Risposto
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...

oltre 6 anni fa | 2

| accettato

Risposto
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...

oltre 6 anni fa | 1

| accettato

Risposto
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...

oltre 6 anni fa | 0

| accettato

Risposto
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...

oltre 6 anni fa | 1

Risposto
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...

oltre 6 anni fa | 0

Risposto
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]...

oltre 6 anni fa | 0

| accettato

Risposto
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...

oltre 6 anni fa | 0

Risposto
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...

oltre 6 anni fa | 1

Risposto
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 =...

oltre 6 anni fa | 0

Risposto
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.

oltre 6 anni fa | 0

| accettato

Carica altro