Answered
Calculation of Maximum Fractal Length for a time series vector
It looks like the equation you have implemented will do the calculation you show as Equation 6. It would be good if you had a si...

6 years ago | 0

| accepted

Answered
DTFT possible on Matlab?
Yes - you can use the MATLAB FFT (fast fourier transform) function to compute DFT's. Please see the MATLAB documentation for det...

6 years ago | 0

Answered
Two variable Cumulative Sum calculation
If I understand your description corrrectly, I think this does what you want, no loops needed. B = cumsum(cumsum(A,1),2)

6 years ago | 1

| accepted

Answered
Reformat a matrix based on common column
Hi Devansh, You can use basic MATLAB indexing to solve your problem, say your original matrix is given by A, then use % genera...

6 years ago | 1

| accepted

Answered
How to determine whether point lies within pyramid volume
Hi Musa, You can first define your pyramid as an alphaShape, for example: P = alphaShape([0 1 -1 1]',[0 1 -1 -1]',[1 0 0 0]')...

6 years ago | 3

Answered
Fourier Transform by using MATLAB
Hi, I either can't reproduce your problem or am not understanding it. Below I have inserted some sample code (which I think es...

6 years ago | 0

| accepted

Answered
How Can I Solve this error in Matlab?
Now you are encountering the problem that I listed as "Second Error:" in my original reply. Your program includes a function, t...

6 years ago | 0

| accepted

Answered
How Can I Solve this error in Matlab?
Hi Syed, MATLAB is telling you that you don't have a directory called: C:\Users\4szrn\Dropbox\Brain_Tumor_Thesis\MRI-scan-segme...

6 years ago | 1

Answered
How Can I Solve this error in Matlab?
Hi Syed, You actually have two errors. First Error: You get an error from the command, addpath( '../dataset' ) . This command ...

6 years ago | 1

Answered
How can I do matrix multiplication on sets of data in an array without looping?
I don't know if it would be any more efficient than your loop (you could check with some timing tests) but here is an alternativ...

7 years ago | 0

Answered
plotting fitted curve to a set of data
Here is some example code that shows two typical ways of plotting a data set a long with a fitted curve. % example plotting x,...

7 years ago | 1

| accepted

Answered
I want to solve the equation within the loop and plot it, but it seems not work
Maybe you can explain further what you mean by it doesn't seem to work. What is it doing that you don't want it to do or what i...

7 years ago | 0

| accepted

Answered
Issue with "Matrix Dimensions Must Agree"
With the dimensions you indicate, it seems that the denominator will have 12 elements (you say r is 1 x 12) and the denominator ...

7 years ago | 0

| accepted

Answered
Find index of a matrix of values into another matrix
This should work assuming you have exactly one match in each row. If some rows have no matches or more than one match you will h...

7 years ago | 0

Answered
Determining maximum and minimum Daily temperatures
If you have exactly 24 data points for each day (one for every hour) then you could use this approach, assume you have your data...

7 years ago | 0

Answered
How to resolve an error for undefined function or variable 'x' within a function?
Without having the actual datafile that the program operates it is difficult to fully debug your code. A cursory inspection indi...

7 years ago | 0

| accepted

Answered
How to make some optimization variables equal to each other?
I assume you are using one of the MATLAB optimization functions such as fmincon or linprog. These functions include arguments Ae...

7 years ago | 1

| accepted

Answered
Repeat the concatenation of every n rows
I think this should do what you want: s = reshape(data',178*23,500)' Note the use of the transpose (accent symbol) first to tr...

7 years ago | 1

| accepted

Answered
Sum Numbers Excluding Zeros
The following code should do what you want. There may be some way to do this more elegantly, but I think this works and should b...

7 years ago | 2

| accepted

Answered
how can I generate a random angle?
Use randn or rand depending upon whether you want the angles to be normally distributed or uniformly distributed. Since randn ...

7 years ago | 0

Answered
Matrix addition from multiple files
You haven't provided enough detail to answer your question too specifically but in general the steps would be to read the indivi...

7 years ago | 0

| accepted

Answered
How to optimize a vector, where only two values are allowed?
If your objective function is linear (I can't tell from what you have included) e.g. minimize over x, f'x where f is row vecto...

7 years ago | 1

| accepted

Answered
MATLAB plot not showing.
The problem is that the second plot is replacing (overwriting) the first one in the figure window. If you open up a new figure, ...

7 years ago | 0

Answered
How to find the location of the first string matching my searching criteria?
Assuming you can get a cell array B of character vectors containing the headers, and the strings you want to match assigned to s...

7 years ago | 0

| accepted

Answered
Multiply each column of a matrix by another matrix
If I understand your question correctly then the result of the "operation for each column of E" will be on the main diagonal of ...

7 years ago | 1

Answered
Plotting Root Locus with Pole/Zero Locations
Think about what a root locus plot actually is. It plots the locations of the roots (pole locations) in the complex plane as a f...

8 years ago | 0

| accepted

Answered
Dear Sirs, would you please help me and tell me how can I plot the average value of the previous y, while we have thousands (x, y) versus the current X?
If you do not want to keep all of the y's in memory and are only interested in the average of all of the y's up to the current s...

8 years ago | 0

Answered
How to solve the error?
Look closely at your your assignment statement, Block(l,k)=L0(i:i+b-1,j:j+b-1). The left hand side, Block(l,k) is a scalar value...

8 years ago | 0

Answered
Delete rows of table through search
I'm not sure from your description exactly what you are trying to do, but I assume it is one of the following two use cases. Use...

8 years ago | 0

Answered
Matrix manupulation to get specific index
You can use the MATLAB find function for this. For example: % Define your matrix A = [1 1 1;1 9 1;0 1 0]; % use f...

8 years ago | 0

Load more