A soumis


Segment Ellipse into Equal Area Sectors
Can segment from FOCUS or CENTER of ellipse.

presque 5 ans il y a | 2 téléchargements |

0.0 / 5
Thumbnail

Réponse apportée
Reconstructing Audio from Spectrogram
istfit then wavwrite?

presque 5 ans il y a | 0

Réponse apportée
How do I import a txt file with the white spaces
This seems to work if you don't mind working with a table readtable('file22.txt','whitespace','','delimiter',',')

presque 5 ans il y a | 0

Réponse apportée
Errorbar plotting in MATLAB
vec1 = rand(20,1); vec2 = 20*rand(20,1)-15*rand(20,1); vec3 = 3*rand(20,1); med = [median(vec1) median(vec2) median(vec3)]; ...

presque 5 ans il y a | 0

| A accepté

Réponse apportée
How to display a percent sign (%) using latex and sprintf
% not using latex loveMetric = 99.99; fprintf(2,'I love matlab: %0.8f %%\n', loveMetric);

presque 5 ans il y a | 0

Réponse apportée
Getting point cloud directly from a 3D CAD STL Model in Matlab
There is a program on matlab central that returns the coordinates x,y,z that are the point cloud https://www.mathworks.com/matl...

presque 5 ans il y a | 0

Réponse apportée
4D plot of 3 vectors and 3D array
In this project, I show a couple of 3D vis techniques https://www.mathworks.com/matlabcentral/fileexchange/71774-create-measure...

presque 5 ans il y a | 0

| A accepté

Réponse apportée
Best tool for complex classification?
metricvalues = zeros(npts,nvar); % find magnitude and phase of the complex values as metrics % fillup the metricvalues array ...

presque 5 ans il y a | 0

A soumis


Ground-Wave Propagation, Earth Surface Dielectric Properties
Compute the attenuation of a LF Ground Wave for a given permittivity and conductivity. Model the complex permittivity of Earth ...

presque 5 ans il y a | 5 téléchargements |

0.0 / 5
Thumbnail

A soumis


Create, Measure, Characterize, Visualize 1D, 2D, 3D Fractals
Creation of fractal curves, surfaces, & volumetric density as well as techniques to measure 1D, 2D, and 3D fractal dimension and...

presque 5 ans il y a | 4 téléchargements |

5.0 / 5
Thumbnail

A soumis


Negative Zeros of the Airy Functions
Calculates the negative zeros of the Airy functions Ai(Z) or Bi(Z) or the negative zeros of the derivative Airy functions Ai'(Z)...

presque 5 ans il y a | 1 téléchargement |

0.0 / 5
Thumbnail

A soumis


Area Normalized 1D Supergaussian and Fitting Noisy Data
Creates area normalized 1D Supergaussian profile.

environ 5 ans il y a | 1 téléchargement |

0.0 / 5
Thumbnail

A soumis


Asteroid Light Curve
Create a nice plot of NEO F4244 asteroid light curve.

environ 5 ans il y a | 1 téléchargement |

0.0 / 5
Thumbnail

A soumis


SKYLAB
Propagate the July 4, 1979 Skylab TLE to its July 11, 1979 re-entry and crash on Earth.

environ 5 ans il y a | 1 téléchargement |

0.0 / 5
Thumbnail

Réponse apportée
RKF method for second order ODE
https://ntrs.nasa.gov/citations/19690021375 Low-order classical Runge-Kutta formulas with stepsize control and their applicatio...

plus de 5 ans il y a | 0

Réponse apportée
RKF method for second order ODE
https://ntrs.nasa.gov/citations/19680027281 Classical Fifth-, Sixth-, Seventh-, and Eighth-Order Runge-Kutta Formulas with Step...

plus de 5 ans il y a | 0

A soumis


Restful Fortune Cookie
Gets a fortune cookie statement every 10 seconds and updates your cookie paper.

plus de 5 ans il y a | 1 téléchargement |

0.0 / 5
Thumbnail

A soumis


Image Texture for Region Classification
Graylevel images can be segmented, characterized by their local texture.

presque 6 ans il y a | 1 téléchargement |

1.0 / 5
Thumbnail

A soumis


NASA Earthshots Image Getter
Demonstrates how to download NASA Earthshots data with RESTful get.

presque 6 ans il y a | 2 téléchargements |

0.0 / 5
Thumbnail

A soumis


Excel Macro Example: Sun Rise, Set, Transit, Twilight
to demonstrate writing inputs and reading outputs from an xlsm spreadsheet

environ 6 ans il y a | 1 téléchargement |

0.0 / 5
Thumbnail

Réponse apportée
Plotting stacked graphs with diff x-axis together without any gap
I have an example here: https://www.mathworks.com/matlabcentral/fileexchange/70172-space-weather-data-solar-flux-10-7-cm

environ 6 ans il y a | 0

| A accepté

Réponse apportée
How to convert euler angle(roll pitch yaw) to position(x,y,z)
Position is a separate measurement from roll, pitch, yaw. Position is the location of the entity, such as an aircraft. Typical...

environ 6 ans il y a | 2

Réponse apportée
How to write a function for a certain number of random numbers
If the numbers are supposed to be uniformly distributed, then they are between 0 and 1. So just linearly scale the value 0 to th...

environ 6 ans il y a | 0

Réponse apportée
Hurst exponent in matlab
Here's one way, but you'll have to change it to have pixels as length dimensions: %% *fractalDimension* %% *definition* funct...

environ 6 ans il y a | 1

| A accepté

Réponse apportée
Initializing multidimensional array and dynamic expansion
If you know the size you want: A = zeros(nrow,ncol); or A = zeros(nrow, ncol1, ncol2,ncol3); etc. Can also initialize to a...

environ 6 ans il y a | 1

Réponse apportée
how to find index of each occurrence of my pattern in a file
This solution will find the lines that contain the whole phrase. The example illustrates how to consider or not consider the cas...

environ 6 ans il y a | 0

Question


How can uicontrol be used to make an editable dropdown (eg combobox) control?
I'd like to use the uicontrol of matlab and its arguments rather than the uidropdown. But I want the uidropdown functionality o...

environ 6 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
How to reverse the order of words in string
There's undoubetly better solutions, but: strtrim(strrep(cell2mat([flipud(split('Hello. I. am. Here.'))']),'.','. '))

environ 6 ans il y a | 1

| A accepté

Réponse apportée
How to change interval unit of x axis
Here's one way You can do shape downsampling - reshape then sum the lines. I made some data by digitizing yoour plot. It's att...

environ 6 ans il y a | 0

| A accepté

Réponse apportée
Loading multiple images, taking mean of them and subtracting background
change the .png for whatever file extension you are using. Are your image greyscale? If not, it might not make sense to backg...

environ 6 ans il y a | 0

Charger plus