Answered
Early detection system of diabetic retinopathy using eye images by using matlab
If you have some labeled data you can try make a classifier see these examples Create Simple Image Classification Network - MAT...

2 years ago | 0

Answered
Solving an implicit equation (iteration)
The formula has the form of an atracting fixed point if it looks like A=f(A) (and other conditions see the links below), then yo...

2 years ago | 0

| accepted

Answered
Resampling a signal without using built-in command
Regarding t: Your time intervals don't need to change length just the step size. Regarding x_a: you need to keep only the sampl...

2 years ago | 0

Answered
Solution of implicit function - how to plot implicit functions?
Based on the equation you posted, the variable A=2*pi needs to be squared when it's inside the square root. But your code doesn'...

2 years ago | 1

| accepted

Answered
Finding the frequency spectrum of a list of column data
Here are three options 1) My favorite is to use pspectrum(data,fs). Where fs is sample frequency. For more information 'doc ps...

2 years ago | 0

Answered
Plotting the range of a variable with defined intervals.
The plot documentation shows you can specify the type of line and markers like this x=0:0.1:1; % use colon notation to create a...

2 years ago | 0

Answered
With two different initial values I am getting two different answers in fsolve. How to decide which one is more reliable?
The results are almost the same, but you can take a look at the display for each iteration see fsolve documentation, here is an ...

2 years ago | 0

Question


Incorrect font size for tiledlayout in livescript output [Bug?]
Using tiledlayout in a livescript does not output with the correct font size for the axis. Is this a bug? See example below, ...

2 years ago | 1 answer | 1

1

answer

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

3 years ago