photo

Kevin Holly

MathWorks

Last seen: 5 Tage vor Aktiv seit 2021

Followers: 0   Following: 0

.

Programming Languages:
MATLAB
Spoken Languages:
English

Statistik

All
MATLAB Answers

0 Fragen
486 Antworten

File Exchange

4 Dateien

Cody

1 Problem
32 Lösungen

RANG
100
of 300.369

REPUTATION
1.360

BEITRÄGE
0 Fragen
486 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
146

RANG
10.970 of 20.936

REPUTATION
49

DURCHSCHNITTLICHE BEWERTUNG
3.00

BEITRÄGE
4 Dateien

DOWNLOADS
10

ALL TIME DOWNLOADS
346

RANG
12.201
of 168.436

BEITRÄGE
1 Problem
32 Lösungen

PUNKTESTAND
474

ANZAHL DER ABZEICHEN
5

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • MATLAB Mini Hack 2022 Participant
  • MATLAB Mini Hack Participant
  • 24 Month Streak
  • Thankful Level 3
  • Quiz Master
  • Creator
  • GitHub Submissions Level 3
  • First Review
  • Personal Best Downloads Level 1
  • 5-Star Galaxy Level 1
  • Knowledgeable Level 5
  • Pro

Abzeichen anzeigen

Feeds

Anzeigen nach

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

etwa 2 Monate vor | 0

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

etwa 2 Monate vor | 0

| akzeptiert

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

etwa 2 Monate vor | 0

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

3 Monate vor | 0

| akzeptiert

Gesendet


Rodent-Tracker
The Rodent Tracker app analyzes overhead-view videos with high-contrast backgrounds to track rodent movement by overlaying an el...

5 Monate vor | 2 Downloads |

5.0 / 5
Thumbnail

Gesendet


Rodent-Sleep-Spindle-Detector
The Rodent Sleep Spindle Detector app can identify sleep spindles within intracranial EEG (iEEG) recordings.

5 Monate vor | 2 Downloads |

1.0 / 5
Thumbnail

Gesendet


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

5 Monate vor | 4 Downloads |

0.0 / 5

Gesendet


Datetime Sliders
These custom UI component sliders work with datetime arrays.

7 Monate vor | 2 Downloads |

0.0 / 5
Thumbnail

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

7 Monate vor | 0

| akzeptiert

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

7 Monate vor | 0

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

9 Monate vor | 0

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

9 Monate vor | 1

| akzeptiert

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

mehr als ein Jahr vor | 0

| akzeptiert

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

mehr als ein Jahr vor | 0

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

mehr als ein Jahr vor | 1

| akzeptiert

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

mehr als ein Jahr vor | 1

| akzeptiert

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

mehr als ein Jahr vor | 0

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

mehr als ein Jahr vor | 0

| akzeptiert

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

mehr als ein Jahr vor | 0

Beantwortet
write matrix, appending data
ppm_data = rand(1,10); filename = 'myexcelfile.xlsx'; Tag = 'Sheetname'; nextI=2; format shortEng nextI2=3; format shortEng ...

mehr als ein Jahr vor | 0

Beantwortet
Appdesigner uigetfile focus error
첨부된 앱을 참조하세요. focus(app.UIFigure)

mehr als ein Jahr vor | 1

| akzeptiert

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

mehr als ein Jahr vor | 0

| akzeptiert

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

mehr als ein Jahr vor | 0

| akzeptiert

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

mehr als ein Jahr vor | 0

| akzeptiert

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

fast 2 Jahre vor | 1

Beantwortet
problem to add property in app designer
Remove the extra "end" on line 22. The function button was purposely disabled since you had an extra end.

fast 2 Jahre vor | 0

Beantwortet
Contours on Geoaxe with addCustomBasemap
You can use the getContourLineCoordinates function from the File Exchange. Create contours with contourf [X,Y,Z] = peaks; [M,...

etwa 2 Jahre vor | 1

Beantwortet
Powerpoint Generation MATLAB App Issues
Ratanjot, Try writing the full path to your image files and see if that resolves the issue. I am assuming you are receivin...

etwa 2 Jahre vor | 0

Beantwortet
Problem in displaying an image with imshow in app designer
I looked at your file and experienced the same problem. I was able to switch the parent to app.UIAxes2 and it worked. I ended up...

etwa 2 Jahre vor | 0

| akzeptiert

Beantwortet
how to obtain additional space in the panel
Yes, you can create an uicontextmenu. You could also create another app that is called by pressing a button. You could also c...

etwa 2 Jahre vor | 1

Mehr laden