Statistics
RANK
39
of 295.410
REPUTATION
5.014
CONTRIBUTIONS
1 Question
1.841 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
461
RANK
17.500 of 20.224
REPUTATION
3
AVERAGE RATING
0.00
CONTRIBUTIONS
1 File
DOWNLOADS
2
ALL TIME DOWNLOADS
22
RANK
of 153.822
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
LQI controller is weirdly slow in response and doesn't always reach a goal on plant
hello again used a simplified version of your model and applied simple PID control (easier for real time conversion) : % Def...
6 dagen ago | 1
rms of noise signal
hello to get the correct result, you need two uncorrelated random generators. here you are using the same seed , so the two ou...
7 dagen ago | 0
Sinewave with log frequency - Shows the wrong frequency content
hello you have to compute the angle increment vs time then take the sine of that angle (or, in other words, do the integral of...
16 dagen ago | 0
| accepted
improve fit compared to R
hello I interpreted your question as how to fit a U shaped function to your data , so at the end I opted for a parabola , is t...
ongeveer een maand ago | 0
Sampling time of matlab figure data
hello to retrieve data from a figure , you can do it by two ways : for recent releases : openfig('data points.fig'); set(...
ongeveer 2 maanden ago | 0
| accepted
Interpolate pairs of values from matrix
hello you can surely get the required x , y data for a given z value ; use contour for that purpose as shown in code example b...
ongeveer 2 maanden ago | 0
| accepted
how to extract (x) coordinates and (y) coordinates of the top boundary from bwimage
hello this is a solution that does not even require the Image processing toolbox of course I had to do a bit of gym to conver...
ongeveer 2 maanden ago | 0
Trouble in reading .tdms file
hello No toolbox required here - I simply used this Fex submission (files are attached if you prefer the fast way) ConvertTD...
ongeveer 2 maanden ago | 0
| accepted
Plot Fourier Transform (FFT) Interpolation Model into future
hello Giacomo first I corrected some minor bugs (before we dig into more technical stuff) A is an amplitude so you should t...
ongeveer 2 maanden ago | 0
Colormap generated using the information of different arrays
hello Richard again you were pretty close to the solution , but to actually make the transparency work you should replace this...
ongeveer 2 maanden ago | 1
| accepted
comment savoir si un dossier est vide
hello The dir structure will return only the two directories entries '.' and '..'. So, check length(d)==2, if that is the cas...
ongeveer 2 maanden ago | 0
Moving window percentile computation using Conv
hello maybe this ? NB it does not need conv but requires Statistics and Machine Learning Toolbox % dummy data t= 0:0.25:100;...
ongeveer 2 maanden ago | 0
| accepted
Why does the signal become thicker after noise reduction and the dots on both sides diverge?
hello again you can already get decent results with smoothdata , other smoothing techniques based on splines or NN could also ...
2 maanden ago | 0
extracting overlapping portions of 2 similar tracks
hello you could do something like this ... I have manually checked which track is the longest and the code works here because ...
2 maanden ago | 0
Matlab code to find the Wave height
hello again I am by no means an image processing expert, but sometimes I go outside my comfort zone ... hopefully my suggestion...
2 maanden ago | 0
how to separate the real and imaginary parts inside a cell
Maybe this ? % create dummy data n = 32; for k = 1:2 cellarray{k} = k*ones(n,n)*(1+1i*5); end % process it for ...
2 maanden ago | 0
Change format of field contour labels that have been manually added in a tiled layout
why not create explicitely the levels (V array) ? a = 0.98; b = 1.02; Z = peaks(99)/100 + (a+b)/2 ; XY = [-0.375:.125:.37...
2 maanden ago | 0
| accepted
How to find center and radius of an arc from binarized image
hello this is what I can offer you today you will need the attached function (CircleFitByTaubin.m) , and this Fex submissio...
2 maanden ago | 0
How do i show the "delta" difference between the two plotted curves?
hello you need to "realign" your two data sets vs common x vector - in other words we need to creat a new x vector and inter...
2 maanden ago | 0
| accepted
Extraction of the spatial coordinates of a curve and calculation of the normal line to each of its points
hello tried a few things here As far as I have understood correctly your question, the points you are looking for are given ...
3 maanden ago | 1
| accepted
Put to white the plot space outside a geometric shape
hello have you checked that the colorbar is symetric around zero (to have white color correspind to zero exactly ? ) this re...
3 maanden ago | 1
| accepted
Error: unrecognized function or variable "bi2de"
Thanks to this post it was easy to (re)create the missing / unknown bi2de function (see end of the code) : Most efficient way to...
3 maanden ago | 0
comment afficher une image à un endroit spécifié d'un axe ?
hello Daniel you need to freeze your axes , otherwise you will not get the desired results here I simply used "hold on" after...
3 maanden ago | 0
Converting cell array with <missing> elements to numerical or double matrix
hello if you want to stick with readcell, you could do that : clc InputData=readcell('MATLAB_readcell.xlsx',"Sheet","Sample...
3 maanden ago | 0
| accepted
Is there a way to crop an array depending on the values that I want through a function as the values change?
hello try this : a = [0 0 0 0 1 1 1 1 1 0 0 0 1 0 0 0 0 1 1 1 1 1 0 1 1 1 1]; ind = logical(a); [begin,ends] = find_st...
4 maanden ago | 0
| accepted
Slicing arrays and save it in the file
hello with your input data in attachment, try this code : % load data data = readmatrix('data.txt'); % or readtable if yo...
4 maanden ago | 1
| accepted
Script has no errors, but no plot is given
again... let's fix it I cannot check here if e^(r(i)^2) (probably wrong) must be replaced by exp(r(i)^2) - I let you double ...
4 maanden ago | 0
Use of eig(A) for eigenvectors
hello let's fix it 1/ had to remove the trailing end - there's simply no reason to have an "end" at the end of your code - p...
4 maanden ago | 0
| accepted
The blank before var >0.5 cause error in R2016a
I don't think it has to do with a specific release I have the same result with R2020a now either you put no space or at least...
5 maanden ago | 1
Remove harmonics background noise
I have some doubts we can recover a clean sinewave from that ... nevertheless I tried a few things ... first I decimated the sig...
5 maanden ago | 0
| accepted