Answered
Issue with dispaly of 3D images created from multiple 2D slices
For a 3D rendering (like MRI) I suggest you try this : vol3d v2 - File Exchange - MATLAB Central %% create a 3D rendering o...

10 months ago | 0

Answered
spectrogram x-axis match with data
this can also helps you : %%Method 1: equate axis sizes for all axes after adding colorbar % Size of axes without a colorbar ...

10 months ago | 0

Answered
How to apply a threshold to gevfit?
hello you can already have a better fit without the threshold and use it only to truncate the fitted curve (but I agree it's...

11 months ago | 0

Answered
Slice Displaying Grids Instead of Color
hello again there was just one mistake : slice(x,y,z,ta,[],[],1:4); to be replaced with : slice(x,y,z,ta,[],[],kz(1:4)); beca...

11 months ago | 0

| accepted

Answered
Function 'boundary' not supported for code generation. How to solve this?
hello based on code seen here : https://fr.mathworks.com/matlabcentral/answers/299796-tight-boundary-around-a-set-of-points ...

11 months ago | 0

Answered
how do I implement a real time FFT in simulink?
hello why not simply use a counter to do the job ? (as we deal with a sinusoidal wave) you need one counter for the frequen...

11 months ago | 0

Answered
How to calculate only several frequency with FFT ?
hello try this DFT on a specified frequency - File Exchange - MATLAB Central

11 months ago | 1

| accepted

Answered
I want to use a low-pass filter to cut off frequencies above the cutoff frequency.
hello I notice that the cutoff freq is very low compared to fs , so maybe lowpass has a numerical problem when the normalized ...

11 months ago | 0

Answered
Average Curvature of a Closed 3D Surface
that's me again ! :) so a bit for my own fun , I tried a few things here I decided I wanted to define the intersection of yo...

11 months ago | 1

| accepted

Answered
Confine contour lines to region defined by data
hello sorry for not putting alot of comments, but I am in a hurry.... here 's my first suggestion, maybe a little dirty but ...

11 months ago | 0

| accepted

Answered
Fit countours to shape
arrgh - I don't have time to finish my work - it's getting very late here ... and I am not an expert in image processing also ...

12 months ago | 0

| accepted

Answered
why envelope by hilbert increasing in tail of signal?
hello again here 3 suggestions appart from the traditionnal hilbert transform see the 2 functions in attachment t = 0:0.0...

12 months ago | 0

| accepted

Answered
fittting data using nonlinear optimization fminsearch
hello seems to me the data looks like a traditionnal exp decaying pulse - I don't undertsand how you can have the 1/t² ampli...

12 months ago | 0

Answered
how to plot graph as file attached.
hello you can read your header file with any matlab function that read ascii / txt files . Here I opted for readlines . Still ...

12 months ago | 0

Answered
Frequency Response Function and FFT for Modal Analysis
hello yes I a coming very late in the show but maybe there is still a need for a better code you can improve the FRF estimat...

12 months ago | 0

Answered
How to find distance in a for loop using d=distance
hello the loop must stop one index value before the end also I would suggest you index the d value so you get (numel(TrackLa...

12 months ago | 1

Answered
I have created a depth map using a time of flight sensor by measuring the distances to create a depth map I am not sure if it is correct.
hello the code seems correct but the look of the 3D plot seems 'maybe) questionnable . I had a feeling that the Z values belo...

12 months ago | 0

Answered
How can I obtain accurate and high-quality FRF results?
hello again I made very few changes to the code - I think that you cannot get any better results if you use only one hit data....

1 year ago | 1

| accepted

Answered
Put arrow and its value in a plot
hello this is a simple example , based on the fex submission : arrow - File Exchange - MATLAB Central load('data_ask_MLD'...

1 year ago | 0

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

1 year ago | 1

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

1 year ago | 0

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

1 year ago | 0

| accepted

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

1 year ago | 0

Answered
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(...

1 year ago | 0

| accepted

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

1 year ago | 0

| accepted

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

1 year ago | 0

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

1 year ago | 0

| accepted

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

1 year ago | 0

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

1 year ago | 1

| accepted

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

1 year ago | 0

Load more