Kevin Holly
MathWorks
Followers: 0 Following: 0
MATLAB
Spoken Languages:
English
Statistiques
RANG
100
of 301 927
RÉPUTATION
1 378
CONTRIBUTIONS
0 Questions
491 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
150
RANG
10 724 of 21 467
RÉPUTATION
54
CLASSEMENT MOYEN
3.00
CONTRIBUTIONS
4 Fichiers
TÉLÉCHARGEMENTS
11
ALL TIME TÉLÉCHARGEMENTS
399
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
zoom on geoplot with app button
I would store the geoaxes as a properties variable. First create the variable in properties. properties (Access = private) ...
4 jours il y a | 0
How to remove the GUI panel sidebars
As of R2025a, MATLAB has a new desktop (See Overview). If you want to know ways to configure this new desktop please see this li...
4 jours il y a | 0
How to identify a thin line in a noisy sideview picture?
Here are some ideas to get it closer: BW = imread("example.png"); % Filter to remove patches (Used Image Region Analyzer App...
7 mois il y a | 1
Report Generator Table Formatting
You need to define the Formaltable with 3 inputs. Header, Body, and Footer, respectfully t= FormalTable(headerContent, body...
7 mois il y a | 0
| A accepté
Closing the Property Inspector in R2025b
You can just left click the icon to collapse it. If you want it to go away, you can deselect "Select & Plot Edit" if you wer...
7 mois il y a | 0
| A accepté
Figure export to .eps in R2025a
Farid, I was able to replicate your issue. I will inform development and look into this. Best, Kevin Holly %% ===== Fe...
10 mois il y a | 0
Matlab 2025a export figure as vector changes font
Thomas, I tested the exportgraphics on the following figure and it exported correctly for me. Are you on R2025a Update 1? ...
10 mois il y a | 0
| A accepté
Python code in Matlab standalone app
You can save your python code in a script and call the .py file from MATLAB using pyrunfile. When you go to compile the app make...
10 mois il y a | 0
App installed by mlappinstaller doesn't show app icon in MATLAB app bar
Did you select the image of the icon here (see image below)? This is the one that is used to display the app in the app bar. Add...
12 mois il y a | 0
| A accepté
A soumis
Rodent-Tracker
The Rodent Tracker app analyzes overhead-view videos with high-contrast backgrounds to track rodent movement by overlaying an el...
environ un an il y a | 2 téléchargements |
A soumis
Rodent-Sleep-Spindle-Detector
The Rodent Sleep Spindle Detector app can identify sleep spindles within intracranial EEG (iEEG) recordings.
environ un an il y a | 6 téléchargements |
A soumis
manual-sleep-spindle-scorer
Manual Sleep Spindle Scorer can import EEG signals in EDF format and view both the raw and filtered signals alongside a spectral...
environ un an il y a | 2 téléchargements |
A soumis
Datetime Sliders
These custom UI component sliders work with datetime arrays.
environ un an il y a | 1 téléchargement |
Issue with resizing a GUI in app designer
I am not sure what is causing the checkbox to disappear, but you can probably use a grid layout found under the containers secti...
plus d'un an il y a | 0
| A accepté
Matlab App: Get cursor position in axis continuously, keep plot interactivity
Would something like the app attached work for the 2D drawing? The user can still zoom in, out, and pan. However, they cannot pl...
plus d'un an il y a | 0
App Designer GUI cutting off at top
I'm going to make the assumption that your colleague has a different screen resolution. I would suggest using the UI Component u...
plus d'un an il y a | 0
Displaying colorbar shrinks displayed image.
Mark, Here are 3 techniques that you can you depending on what you desire: Method 1 % Read in standard demo image. fileN...
plus d'un an il y a | 1
| A accepté
How do you put lcolorbar in UIAxes (app designer)?
Let's say I want to place this in App Designer. [Z,R] = readgeoraster("n39_w106_3arc_v2.dt1","OutputType","double"); [vis,visR...
environ 2 ans il y a | 0
| A accepté
how to specify pcolor color scheme
% Define the ranges for the variables I0 = 1:10; % X-axis values P0 = 1:15; % Y-axis values % Create meshgrid matrices for ...
environ 2 ans il y a | 0
Remove black background in a translated png plot
I = imread("cameraman.tif"); imshow(I) title("Original Image") J = imtranslate(I,[15, 25],'FillValues',255); %Add Fill Values...
environ 2 ans il y a | 1
| A accepté
Why is uistyle("Icon",'error') making a transparent icon when the UITable is not on the first tab of a tabgroup?
Update: This issue is fixed in MATLAB R2024b. That is interesting. Here is a workaround for now, you can just hardcode the...
environ 2 ans il y a | 1
| A accepté
Avoid overlapping different graphs that are placed in the same positions
You need to specify the axes you want to hold. By default, the hold command target the current axes that can be called with gca....
environ 2 ans il y a | 0
How to prevent the connecting of dots between two data points when the middle points are missing in plot
x1=1:10; y1=sin(x1*2*pi/18); x2=x1; x2(5:6)=NaN;%Change this to NaN y2=sin(x2*1.8*pi/18); figure(1) plot(x1,y1,'-bx',x2,y2...
environ 2 ans il y a | 0
| A accepté
Mapping toolkit: problems plotting near the pole
James, I reported the issue and obtained the following workaround: load coastlines % Invert the orientation of the line d...
environ 2 ans il y a | 0
write matrix, appending data
ppm_data = rand(1,10); filename = 'myexcelfile.xlsx'; Tag = 'Sheetname'; nextI=2; format shortEng nextI2=3; format shortEng ...
plus de 2 ans il y a | 0
Appdesigner uigetfile focus error
첨부된 앱을 참조하세요. focus(app.UIFigure)
plus de 2 ans il y a | 1
| A accepté
How can I plot my coórdinates on top of the map, Ans how can I choose my own area? Cannot find a tutorial on the subject.
land = readgeotable("landareas.shp"); geoplot(land) geolimits([50 52], [2.5 4.5]) % Set geographic limits % Coördinates to ...
plus de 2 ans il y a | 0
| A accepté
Making something like 'findpeaks' function without using threshold
Is there a particular reason that you don't want to use findpeaks function? To be clear on what you would like as an output, ...
plus de 2 ans il y a | 0
| A accepté
Checkboxes values don't change after checking them off in UItable in app designer
Below the logical array, app.ofchan, is defined as all false (0) . app.ofchan = false(size(subsystem.ChannelNames)); If you wa...
plus de 2 ans il y a | 0
| A accepté
Not getting the output in app interface even code is written
Ehtisham, I made a few changes to your app. See attached. Let me know if this helps or if you have any questions.
plus de 2 ans il y a | 1











