Respondida
Getting "Error using horzcat." when trying to draw displacement graph for a Mechanism
This executes without error, but I'm unclear about whether it solves your problem. A0A = 12.6; AB = 14; AD = 37.1; EB = 45.5; ...

más de 4 años hace | 0

Enviada


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

más de 5 años hace | 1 descarga |

0.0 / 5
Thumbnail

Respondida
Reconstructing Audio from Spectrogram
istfit then wavwrite?

más de 5 años hace | 0

Respondida
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',',')

más de 5 años hace | 0

Respondida
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)]; ...

más de 5 años hace | 0

| aceptada

Respondida
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);

más de 5 años hace | 0

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

más de 5 años hace | 0

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

más de 5 años hace | 0

| aceptada

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

más de 5 años hace | 0

Enviada


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

más de 5 años hace | 6 descargas |

5.0 / 5
Thumbnail

Enviada


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

más de 5 años hace | 1 descarga |

0.0 / 5
Thumbnail

Enviada


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

más de 5 años hace | 1 descarga |

0.0 / 5
Thumbnail

Enviada


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

más de 5 años hace | 1 descarga |

0.0 / 5
Thumbnail

Enviada


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

más de 5 años hace | 2 descargas |

0.0 / 5
Thumbnail

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

más de 5 años hace | 0

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

más de 5 años hace | 0

Enviada


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

alrededor de 6 años hace | 1 descarga |

0.0 / 5
Thumbnail

Enviada


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

alrededor de 6 años hace | 1 descarga |

1.0 / 5
Thumbnail

Enviada


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

alrededor de 6 años hace | 1 descarga |

0.0 / 5
Thumbnail

Enviada


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

más de 6 años hace | 1 descarga |

0.0 / 5
Thumbnail

Respondida
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

más de 6 años hace | 0

| aceptada

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

más de 6 años hace | 2

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

más de 6 años hace | 0

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

más de 6 años hace | 1

| aceptada

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

más de 6 años hace | 1

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

más de 6 años hace | 0

Pregunta


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

más de 6 años hace | 2 respuestas | 0

2

respuestas

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

más de 6 años hace | 1

| aceptada

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

más de 6 años hace | 0

| aceptada

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

más de 6 años hace | 0

Cargar más