Solved


Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
For a row vector: V=[7 1 2 -3] there is one sign change (from 2 to -3). So, the function you write must return N=1. F...

1 year ago

Answered
how can I run function in file exchange
You're right, that sauvola.m that you linked has only 45 lines (but there's no actual end that terminates the function definitio...

1 year ago | 0

| accepted

Answered
How to select, or filter, the external border/boundary in a set of (x,y)-points?
ismember As in borders = load(websave('rd', "https://nl.mathworks.com/matlabcentral/answers/uploaded_files/1430803/borders.ma...

1 year ago | 1

Answered
Plot a mean of ten lines of different resolution
I see, this is overly complicated. Not as in complex or difficult, as in made needlessly overly complicated. Let's just say you...

1 year ago | 0

Answered
FFT from a excel file
Well, make sure that the data contained in channel1Data2 is numeric (double, single, int8, etc..). From the question title it ...

1 year ago | 0

Solved


Determine point is located in a circle or not
Using input [x] and [y], determine the points (x,y) is located inside of circle (x^2+y^2=1) if point is located in circle, outp...

1 year ago

Solved


Average speed for the entire trip
The input is two speeds (for the trip and return trip) and output is average speed. Assume units are consistent, say miles per h...

1 year ago

Solved


Test if a matrix is symmetric
Write a logical function that returns 1 if the input matrix is symmetric and 0 otherwise.

1 year ago

Answered
How to check whether partial correlation is significant or not at 5% significance level?
A partial correlation means you are controlling or "partialing out" some variance that is explained by -usually- another (3rd) v...

1 year ago | 0

Answered
How To multiply this Formula to run this code Please
The fact that there is the need for a loop for these operations, that b is not simply obtained with b=-T.*h, that [ones(1,i-1), ...

1 year ago | 0

| accepted

Answered
How to plot Confusion Matrix with tolerence limit ?
So you just want to translate the pseudo code above into working code and choose how to best plot it. The pseudo code probably d...

1 year ago | 0

| accepted

Answered
I can't run the code I wrote the way I want. Please help me
By "I cannot change the K value at every T value" I imagine you need K to change for every iteration and therefore have sitll 6 ...

1 year ago | 0

Answered
How shall I resolve the warning of Merging of Pdfs?
Nice little utility (and overall apache pdfbox functionality), I just tried it, it worked and it didn't even give me an error (b...

1 year ago | 0

| accepted

Answered
Concatenate two vectors with different dimensions and sort the result in an ascending order.
vertcat(A,B) or cat(1,A,B) or just [A;B] is what you need to concatenate vertically. then just sort Your code however gives the...

1 year ago | 1

Answered
How can I get latitude and longitude range for each US state in MATLAB?
With: states = shaperead('usastatelo'); one for example gets 'BoundingBox', 'X', 'Y' among others for each US state states(is...

1 year ago | 0

| accepted

Answered
How do I create a colored intensity plot from location and intensity values
Could imagesc work? sysize = 100; maxintensity = 20; npoints = 13; coords = randi(sysize,[npoints,2]); imatc = nan(sysize); ...

1 year ago | 1

| accepted

Answered
Problem with array and save file?
Do you need a 3D cell and then rehsape it or can you create it like the 2D table you want already? videosn = ["Searching for Bo...

1 year ago | 0

| accepted

Solved


Find x in provided equation!
x^2-2*x+1=0 This polynomial can be expressed by using each term's coefficients, such as [1 -2 1]. Using the polynomial ...

1 year ago

Solved


Who invented zero?
We know the importance zero in computer science, mathematics... but who invented zero? Clue: He was the first in the line ...

1 year ago

Solved


Change string to number
Change given string to number. (hint: there is already function) Changing from ['1234'] to [1234] is one of example

1 year ago

Answered
I would like to find bursts among neuronal spikes.
There are several features that you may want to take into account depending on your data and on what you want to do. The simples...

1 year ago | 0

| accepted

Answered
Why do I see a drop in the last datapoint (Nyquist frequency) of the spectra derived from pwelch?
It may be because it's the Nyquist frequency, rolloff/aliasing/edge artefacts should happen afterwards at higher freqs but in so...

1 year ago | 0

| accepted

Answered
Reconstruction of a Signal from the Real Part of Its Discrete Fourier Transform for matlab
N = 14; %ns = 0:N; xn = 1/2*(randn(N, 1) +1i*randn(N,1)); %random complex signal x_n = [0+0i;xn;zeros([N,1])+0i]; % M or nume...

1 year ago | 1

Answered
I am getting the same processed image result from easch iteration of the loop.I want to get the respective processed image from each iteration of the loop.
COuld the problem (just a first glance) be here? myFiles = dir(fullfile(myDir,'*.png')); %gets all png files in struct for k ...

2 years ago | 0

| accepted

Answered
Plotting surface tangent to surface plot
You should use a matrix, not a scalar or vector, as the error says. Z (and T) are vectors, probably an issue with how you defi...

2 years ago | 0

Answered
How in the world am I supposed to install MATLAB on Linux Ubuntu 20.04?!
cd mounted/directory/with/matlab ./install But you probably already tried that. Add sudo first before the command maybe. You...

2 years ago | 0

Answered
Indexing in complex cell arrays
To simplify, since you are working with cells that contain only single colums or rows (and not multiple like in a matrix), a{1} ...

2 years ago | 0

| accepted

Answered
Extract data points from multiple plot in one figure on Matlab
Your figure axes have 3 graphic objects, the first is the green line and the last is the Observed and Simulation ones. In betwee...

2 years ago | 0

Answered
plot running time complexity
Well, in this figure the functions behind the lines are just not the simple ones displayed. Otherwise for example all n^n and n^...

2 years ago | 0

| accepted

Solved


Energy of an object
Calculate the total mechanical energy of an object. Total Energy= Potential energy + Kinetic energy P.E.=m*g*h K.E.=1/2...

2 years ago

Load more