photo

Star Strider


Last seen: Today |  Con actividad desde 2012

Followers: 63   Following: 0

Mensaje

Hic sunt dracones! PROFESSIONAL: Physician (M.D.): Diplomate of the American Board of Internal Medicine; M.Sc. Biomedical Engineering: Instrumentation, Signal Processing, Control, System Identification, Parameter Estimation NON-PROFESSIONAL: Amateur Extra Class Amateur Radio Operator; Private Pilot, Airplane Single Engine Land, Instrument Rating Airplane; Gamer NOTE: I do not respond to emails or personal messages, unless they are about my File Exchange contributions. Time Zone: UTC-7 (Standard); UTC-6 (Daylight Savings/Summer)

Estadística

All
MATLAB Answers

0 Preguntas
20.859 Respuestas

File Exchange

5 Archivos

Cody

0 Problemas
1 Solución

CLASIFICACIÓN
3
of 302.188

REPUTACIÓN
68.632

CONTRIBUCIONES
0 Preguntas
20.859 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
9.723

CLASIFICACIÓN
2.568 of 21.608

REPUTACIÓN
680

EVALUACIÓN MEDIA
4.70

CONTRIBUCIONES
5 Archivos

DESCARGAS
9

ALL TIME DESCARGAS
6303

CLASIFICACIÓN
119.449
of 179.876

CONTRIBUCIONES
0 Problemas
1 Solución

PUNTUACIÓN
20

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Scavenger Finisher
  • Most Accepted 2025
  • Most Accepted 2024
  • Solver
  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 3
  • Most Accepted 2023
  • Most Accepted 2022
  • Most Accepted 2021
  • Revival Level 3
  • First Submission
  • Grand Master

Ver insignias

Feeds

Respondida
How to install matlab R2026b in linux mint
First, be certain that it's lsited among the supported Linux distros: MATLAB 2026b System Requirements for Linux. (I'm running ...

3 días hace | 0

Respondida
How to use the constant e in MATLAB?
Use the exponential function exp(y) to compute e^y. For example:  x = 0.2; Result = (x^2)*exp(4) Result = 2.18...

3 días hace | 17

| aceptada

Respondida
Spurious vertical lines in my time history plots
Without the data and the code you wrote to plot it, it's difficult to determine what the problem is. (I've seen this recently i...

5 días hace | 0

Respondida
why is there a random line extending outside plot boundaries?
figure imshow(imread('Screenshot 202... 19.22.50.png')) T1 = readtable('Tzedakis et al 2018.xlsx', Sheet=7, VariableNaming...

9 días hace | 0

Respondida
Plotting images in Matlab 2026a
I am not certain what you want, however one option is to use surf and then rotate it with the view function. Also, 'interp' mig...

10 días hace | 0

Respondida
Can I download documentation for matlab 2025b?
The Archived MathWorks Documentation page indicates that you can access the R2025b documentation here. I do not recommend dow...

15 días hace | 0

Respondida
Error while outputting graph
You were not calling subs correctly. I added the necessary additional arguments, and it now seems to work. Try this --- sy...

15 días hace | 1

Respondida
How to find start and end points of signal in data file?
Another way would be to calculate a suitable threshold, find the index or time values at the points where the signal crosses the...

22 días hace | 2

Respondida
oscillometric waveform envelope for mean arterial pressure estimation
I detrended this manually, using a biexponential fit to the data, and subtracting it from the data, then filtering that result. ...

27 días hace | 0

Respondida
Simulink will not open from MATLAB
This is what I see -- The icon for it seems to be clearly visible on the top toolstrip for me. ^ HER...

alrededor de 1 mes hace | 0

| aceptada

Respondida
My question relates to signal processing.
It would help to know when the different feeds occurred. It's impossible for me to determaine anything from the data alone. ...

alrededor de 1 mes hace | 0

| aceptada

Respondida
24 hour time line plot for discrete data
The contourf function can get you there. You can choose the appropriate colormap or create your own. Try something like this...

alrededor de 1 mes hace | 0

Respondida
Importing space-delimited files where there are spaces in data fields
It depends what you want. The first three variables are doubles without spaces. It is possible to get the variable names from ...

alrededor de 1 mes hace | 0

| aceptada

Respondida
Signal is noisy and needs filtering
You first need to filter the incoming signal with a lowpass Bessel filter (anti-aliasing filter) in hardware with a cutoff frequ...

alrededor de 2 meses hace | 0

Respondida
Execution of script mpower as a function is not supported
You most likely have a script you saved as mpower.m. Do something like this to determine that -- which mpower -all Your r...

alrededor de 2 meses hace | 1

Respondida
Error "Unable to perform assignment because the indices on the left side are not compatible with the size of the right side"
I could not replicate your error. This seems to work -- % dy(1)=2*y(1)+y(2)+5*y(3)+exp(-2*t) % dy(2)=-3*y(1)-2*y(2)-8*y(...

2 meses hace | 1

| aceptada

Respondida
Unable to download the "MATLAB R2026b prerelease" version?
Check the MathWorks Status page. Currently in the U.S., everything seems to be operating normally.

3 meses hace | 0

Respondida
Why can't I use a toolbox that appears to be installed?
One possibility is a path problem. Run these, then run your commands to see if it is -- restoredefaultpath rehash toolbox...

3 meses hace | 0

Respondida
Turn off dark mode on web
In MATLAB Online, first, go the the 'HOME' tab, then in the top toolstrip in 'ENVIRONMENT', click on the 'Settings' icon. This ...

3 meses hace | 0

Respondida
starting matlab after intall on linux
'Debian' without the version number is a bit ambiguous. See: MATLAB R2026a System Requirements for Linux to be certain you ha...

4 meses hace | 0

| aceptada

Respondida
STFT for state of polarization data
I am not certain what you might be looking for in your data. I would use the pspectrum function witth the 'spectrogram' optio...

4 meses hace | 0

Respondida
It wants probability of a copier
It would seem that the probability of a defective copy is simply the number of defective copies per total copies (assuming that ...

4 meses hace | 0

Respondida
add hours to timetable time cell array
Try something like this -- A = {{'2026-05-23 09:55'} 271 {'2026-05-23 09:50'} 265}; T1 = cell2...

4 meses hace | 0

Respondida
Count number of true statements in a sequence until false, then check for the next true and repeat
Using strfind -- V = [0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1] == 1; V2 = [false V false] ...

4 meses hace | 1

Respondida
help with XYZ data file
You may only need to use reshape (with the same last two arguments) on each of the vectors, rather than using scatteredInterpola...

5 meses hace | 0

| aceptada

Respondida
Best way to fit functionals with error bars
That depends on what the error bars indicate, and the information you have about them. A common way of weighting a regression...

5 meses hace | 0

| aceptada

Respondida
Trying to create a referenceEllipsoid for a fantasy exoplanet. How do I get a valid value for input number 1, 'name', that is not on the list of referenceEllipsoid values?
The only reference I can find for 'darodar' has to do with a spam referrer. (Perhaps choose another name?) That aside, if 'd...

5 meses hace | 0

Respondida
Plot not showing anything with too many NaNs
You will most likely need to Contact Support for this problem. Include the URL of this thread in your note to MathWorks so yo...

5 meses hace | 1

| aceptada

Respondida
Why am I getting error "too many input arguments" when using referenceEllipsoid and oblateSpheroid?
All the values apparently must be assigned as properties of the original objects after creating each, rather than passed as name...

5 meses hace | 0

Respondida
Axis not held using hold command in plot3
It would be nice to know what the point values are, and if you are restricting the axes in some way by using xlim, ylim, zlim or...

5 meses hace | 0

| aceptada

Cargar más