Brian Neiswander
MathWorks
Followers: 1 Following: 0
All comments and opinions expressed here are mine alone and do not necessarily reflect those of my employers, past or present.
Statistik
RANG
1.157
of 295.448
REPUTATION
62
BEITRÄGE
0 Fragen
17 Antworten
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
21
RANG
2.174 of 20.227
REPUTATION
809
DURCHSCHNITTLICHE BEWERTUNG
4.80
BEITRÄGE
1 Datei
DOWNLOADS
128
ALL TIME DOWNLOADS
7620
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Assigning Attributes to the entity in simulink
You can use a |<https://www.mathworks.com/help/matlab/ref/switch.html switch>| statement to assign values to the |ServiceTime| a...
mehr als 6 Jahre vor | 1
| akzeptiert
finddelay returns identical value (0) for "best" and "worst" case.
Hi Evan, The "finddelay" function does not consider the strength of the correlation found. Given two signals, it simply retu...
mehr als 9 Jahre vor | 0
re-build time series from pwelch after removing peaks in the spectra
Hi Richard, I recommend using a band-stop filter rather than manually removing a peak from the spectra and then recreating th...
mehr als 9 Jahre vor | 0
Multitaper spectral estimation (pmtm.m)
I was able to run the code you posted in R2015a without an error. The error you see may be caused by a local "dpss" function th...
mehr als 9 Jahre vor | 1
| akzeptiert
How I can remove orbital error from ROI-PAC result?
I understand that you would like to remove orbital fringes from unwrapped SAR data. This really depends on the nature of the de...
mehr als 9 Jahre vor | 0
| akzeptiert
Simulink Data Cube Accumulation
One approach is to use the "Buffer" block to create data frames and then use a "To Workspace" block to write the frames to a wor...
mehr als 9 Jahre vor | 0
Separate touching drops in Binary image
The "watershed" approach should be able to handle this problem. Even though the "watershed" function splits the edges into sepa...
mehr als 9 Jahre vor | 3
Many small Eigenvalue Decompositions in parallel on GPU?
The "pagefun" function does not currently support the function "eig". However, note that the "eig" function will accept GPU a...
mehr als 9 Jahre vor | 3
Creating Karatsuba's algorithm with Matlab
From your description of the problem, it sounds to me like you need to create a recursive algorithm to solve this problem. See ...
mehr als 9 Jahre vor | 1
How do I calibrate array in MATLAB using 3 variables??
I understand that you have three distinct vectors "a", "b", and "c". From your descriptions: * "a" contains un-calibrated m...
mehr als 9 Jahre vor | 3
Plotting hourly values using datetick
One approach is to explicitly set the "XTick" property of the axes using date number values. As an example, let's assume that y...
mehr als 9 Jahre vor | 1
Use of time Series
Using a simple linear interpolation should be the easiest method to accomplish this. Let's say you have some sample measureme...
mehr als 9 Jahre vor | 2
getting error when activating
This issue can occur if your system (eg. Windows) username contains special characters. To resolve this issue, try creating a n...
mehr als 9 Jahre vor | 1
Oblate Spheroid Class setting C
Given the general equation of an ellipsoid: (x/A)^2 + (y/B)^2 + (z/C)^2 = 1 The spheroid is a special case of an ellipso...
mehr als 9 Jahre vor | 0
Extract Frequency, Amplitude and Phase of Logarithmic chirp
You can get instantaneous amplitude envelope, phase, and frequency information from a signal using the Hilbert transform. In MAT...
mehr als 9 Jahre vor | 2
| akzeptiert
Can i add an image to an axes without a push button
As Brendan mentioned, you can accomplish this using the "KeyPressFcn" property of the figure window. This property allows you t...
mehr als 9 Jahre vor | 2
Save an image with a different name using GUI
The function "savefig" was introduced in MATLAB R2013b. If you are using a version earlier than MATLAB R2013b, try using: ...
mehr als 9 Jahre vor | 1