Estadística
1 Pregunta
41 Respuestas
0 Problemas
842 Soluciones
CLASIFICACIÓN
791
of 300.364
REPUTACIÓN
98
CONTRIBUCIONES
1 Pregunta
41 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.0%
VOTOS RECIBIDOS
17
CLASIFICACIÓN
of 20.934
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
116
of 168.407
CONTRIBUCIONES
0 Problemas
842 Soluciones
PUNTUACIÓN
10.831
NÚMERO DE INSIGNIAS
33
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Resuelto
The MATLAB Treasure Hunt – Decode the First Clue Hidden in a Jumbled Sequence of Numbers
You discover an ancient parchment inside the college archives. It contains a jumbled sequence of numbers that seems meaningless ...
3 días hace
saving graphic as pdf file not working "out of the box"
All of these options work fine for me with no warnings/errors on R2025b using Windows 10: plot(1:10) print -dpdf test.pdf sav...
alrededor de 1 mes hace | 0
Can I get notification when a new version (e.g., 2025a) is released?
Here's your notification - MATLAB R2025a is out! To answer your question though, a couple of years ago I set up a ThingSpeak wo...
6 meses hace | 0
Find items of a matrix using a per-column index
A = [1, 2, 3; 4, 5, 6]; idx = [2, 2, 1]; linearIndices = sub2ind(size(A), idx, 1:length(idx)); result = A(linearIndices)
9 meses hace | 0
| aceptada
hey so i need to repeat the code everytime to see and analyze the time responses for 20 different values of k. How can i do it at once and have the output for all the values?
There are many ways to go about this and your question is not very specific in what you want. What values do you want to keep? ...
más de 1 año hace | 0
how to writefile string as a text-file with function
'\' is a formatting operator, so to get a backslash using fprintf/sprintf, you need to have a '\\'. Your first line contains mul...
más de 1 año hace | 0
| aceptada
smart function to switch functions
You could set up a function with a switch statement, something like: function odesolver(@fun,odesolverStr) switch odesolverStr...
más de 1 año hace | 0
Use drawing made by user in UI Axes to be animated onto graph
I've attempted this with the MATLAB logo as the image which is 'creating' the sine wave (see attached, the PNG file has to be in...
más de 1 año hace | 0
| aceptada
Plotting between a point and a frame
Not excatly sure if I've understood your question, but here's my attempt at interpreting it: n = 50; t = linspace(0,2*pi,n); ...
más de 1 año hace | 0
How do I Measure Distances in an Image and save them in an array?
I haven't been able to test this out but you should be able to change the output argument to include diffPos: function diffPos ...
más de 1 año hace | 0
change mouse hover datatip information?
Since I don't have your GPSData data, here's a working example of how to do it using dataTipTextRow. See also Create Custom Data...
más de 1 año hace | 0
| aceptada
How do I display an image that a user uploads?
I'm glad it worked out for you! Just adding my comment as an answer so you can accept it 🙂 The code you are using should work...
más de 1 año hace | 0
| aceptada
Use regexp to find all letters in string except one
I copied your question (with no edits) into the MATLAB AI Chat Playground, and this was the response: Yes, it is possible to bu...
casi 2 años hace | 0
Exportgraphics does only export black images from UIAxes
When I run this code (from the command window), it all works fine (Windows 10, MATLAB R2023b Update 6). See attached image for r...
casi 2 años hace | 0
Error while using readPDFFormData to extract data from online pdf files
I was not able to get the URL to work directly either (not sure why since I'm pretty sure reading online images such as PNG/JPG ...
casi 2 años hace | 0
| aceptada
Create Loop to convert DICOM to Tiff
Do you mean something like: for i = 600:1400 I = dicomread(sprintf('1255-%i.dcm',i)); imwrite(I, sprintf('1255-%i.tif...
casi 2 años hace | 0
Comparison Using a Tolerance
Test cases isequal_tol(1,5,1e-3) % false isequal_tol(1,1,1e-3) % true isequal_tol(pi,3.141593,1e-3) % true isequal_tol funct...
casi 2 años hace | 0
Highlight multiple segments in plot and save indices
Is this what you're after? You can select multiple segments by simply holding the Shift key, from the documentation:
alrededor de 2 años hace | 2
| aceptada
Extracting Specific Rows From xlsx or txt File
I think you edited your question from what you had initially quite a bit (you should have just made a new question). Since I spe...
alrededor de 2 años hace | 0
| aceptada
code for this type of GROUP bar graph?
This isn't exactly the same as your plot, but I hope it helps. If you want a patterned fill on your bars, you can check out Hatc...
alrededor de 2 años hace | 1
| aceptada
How to fully display y-axis labels if they do not fit inside of the figure window when specifying a figure size and using subsubplot?
This is happening due to this line, which makes the figure window smaller than the default axis size: figure('units','inches','...
alrededor de 2 años hace | 1
| aceptada
How to remove border from figure
The way I go about this is first saving the figure as a PDF (so that it is vectorised): f = figure(1); % OR f = gcf exportgrap...
alrededor de 2 años hace | 1
Why do I receive License Manager Error -8?
Have you looked this up online? MathWorks has already answered this exact (word-for-word!) question: Why do I receive License Ma...
alrededor de 2 años hace | 0
Adding labels to plots with LaTeX syntax
Take a look at the text function with the latex interpreter. Here's a working example: plot(0:.1:pi,sin(0:.1:pi)) text(pi/2,.9...
alrededor de 2 años hace | 1
Pregunta
Mandelbrot Set with CUDA
I am attempting to work through the three methods to compute the Mandelbrot Set outlined on this page. I am stuck on the third m...
más de 2 años hace | 1 respuesta | 0
1
respuestaApplying a mask to 3D Data
nbins = 20; mask = mask==1; selected_voxels = fw(mask); % ? counts = histcounts(selected_voxels, nbins); range = linspace(0,...
más de 2 años hace | 0
How can I fit a scatter plot?
If you want to fit a line to the data as a whole, I think this should work: t = 1:7; Lac = randi(10,[7,24]); scatter(t,Lac) ...
más de 2 años hace | 0
Saving results of a for loop in a cell array
It is hard to run your code without your data, but a potential source of error may be when you use 'for iAnimal = 1:size(DataFra...
más de 2 años hace | 1
low quality figure problem when saving as svg or pdf ( using fill function)
This issue occurs when the figure is quite complex, like your second one. One solution is to force a vectorised export by going ...
más de 2 años hace | 5
| aceptada
Convert Pictures into Array
You can use imread to import the images to MATLAB and then use save to save them as a .mat file
más de 2 años hace | 0











