Community Profile

photo

Adam Danz

MathWorks

Last seen: Today Attivo dal 2014

Software engineer at MathWorks with a Ph.D. in neurophysiology from the University of Rochester (NY). Specialized in visual and vestibular systems, multisensory integration, sensory-motor and control systems, steering, and navigation. Former member of the MathWorks Community Advisory Board. *My community contributions before 14-Feb-2022 were prior to my employment at MathWorks.

Pronouns:
He/him

Statistiche

All
  • MATLAB Flipbook Mini Hack Participant
  • MATLAB Mini Hack 2022 Participant
  • Editor's pick for Answers
  • Knowledgeable Level 5
  • Solver
  • Personal Best Downloads Level 4
  • Explorer
  • Most Accepted 2021
  • MATLAB Mini Hack Participant
  • Revival Level 4
  • 36 Month Streak
  • Master

Visualizza badge

Content Feed

Risposto
Data not aligned after zooming into figure using plotyy
plotyy is not recommended. Instead, use yyaxis which replaces plotyy. I've converted your code below. yyaxis does not have th...

14 giorni fa | 2

| accettato

Risposto
"The MathWorks" or simply "MathWorks"?
According to this MathWorks Brand Guidelines page, use MathWorks to refer to the company. The legal name of the company is The ...

23 giorni fa | 1

Risposto
Graph lines not showing
max_value_refA = max(out2.Q_i_ref); avg_value_refA = mean(out2.Q_i_ref); yline(max_value_refA, '--k') yline(avg_value_refAm...

23 giorni fa | 0

Risposto
How to show multi data probability densities in one axes?
Plotting two binscatters in one axes This solution does the following: overlay two axes in tiledlayout link the axes limits ...

circa un mese fa | 0

Risposto
Get quiver plot arrows to connect up contour lines
Let's break this down into steps. This solution doesn't address all of the requirements in the question. Get the arrows to s...

circa un mese fa | 0

Risposto
How do I add transparency to a plot in the Live Editor?
When using RGBA values, the alpha value is not saved so when the figure loads, the color will lack transparency. Due to how fig...

circa un mese fa | 0

| accettato

Risposto
Plotting lines with quadruplets R-G-B-Alpha ?
> Is this documented anywhere? No, the 1x4 RGBA alpha-color option is not documented at this time. One reason is that the alp...

circa un mese fa | 0

| accettato

Risposto
Stacked Plots - Changing the Location and Oreintation of the Display Labels (Y Labels)
Y-axis label rotation in stackedplot is addressed here. You could use the same approach to change the YAxisLocation to the righ...

circa un mese fa | 0

Risposto
Rotating text to 90 degrees
It looks like you're working with embedded text. You may find this resource helpful: https://peterscarfe.com/rotatingText.htm...

circa un mese fa | 0

Risposto
A 2D circle divided into 10 sectors in the 3D plot.
Creating a polar heatmap within Cartesian coordinates The basic idea is to create a polar grid centered under the data, plotted...

circa un mese fa | 0

Risposto
Put Y-Ticks above bars in stacked horizontal bar chart
Annotations are tricky because they rely on coordinates that are normalized to the figure area rather than using data units. I...

circa un mese fa | 0

Risposto
Disable figure generated code in Matlab R2023b
The subwindow you are describing only appears in the R2023b beta release found on the File Exchange. If you turn off the new de...

circa un mese fa | 1

| accettato

Risposto
Count percentage of certain number in struct
Looks like @Voss hit the nail on the head. Another approach is to use groupcounts to tally the counts between the two groups....

circa un mese fa | 1

Risposto
Save matrix in matlab and call for operations
Two common approaches to storing a set of matrices are to store them in a cell array or, if the matrices are the same size, to s...

circa un mese fa | 0

| accettato

Risposto
How do I plot a timeseries?
Use readtimetable to create a timetable from your data file. If you're having problems with this step, provide a sample of your...

circa un mese fa | 0

Risposto
How to include dependency in standalone app?
The MATLAB and Simulink compiler support page indicates that some functionality in the Audio Toolbox is not supported including ...

circa un mese fa | 0

| accettato

Risposto
Data Tips in parallelplot
The only way to add content to the datatip in parallelplot is to do so interactively by right-clicking the datatip in parallelpl...

circa un mese fa | 1

Risposto
Dark Mode not working : R2023b Update 6 win64 on Windows 10 1903
After installing the update, you need to press the "Try the New Desktop" button at the top of the MATLAB desktop window.

circa 2 mesi fa | 0

Pubblicato


Creating a Flight Tracking Dashboard, Part 1: Visualizing an Aircraft
Guest Writer: Ken Deeley Ken is an application engineer in Cambridge, UK, supporting MathWorks users with their technical...

circa 2 mesi fa

Thumbnail

Risposto
uigetfile - forces main gui to go behind other windows
This is a known issue. See similar threads https://www.mathworks.com/matlabcentral/answers/473520 https://www.mathworks.com/m...

circa 2 mesi fa | 0

| accettato

Risposto
shade area between graphs
Another solution that may be helpful is the fillBetweenAreaCurve function offered by the MATLAB Charting team on the File Exchan...

circa 2 mesi fa | 0

Risposto
Fastest recursive search for files
Here's an Easter egg. I rarely answer non-MATLAB questions here but since I had to solve this today, I thought I'd share. Thi...

2 mesi fa | 0

| accettato

Risposto
Odd behaviour when displaying fit results in UIAxes in App Designer (Matlab R2023b)
When plotting a cfit object using plot(ax,cfit) the x-values for the line are selected based on the axes limits. Every time you...

2 mesi fa | 1

| accettato

Risposto
How to get a scatterhistogram in an UIAxes (e.g. Matlab App)?
Scatterhistogram creates a figure with 3 axes. You can expecify where those 3 axes should be using the optional parent argument:...

2 mesi fa | 1

| accettato

Risposto
How to plot two figures side by side in a same plot?
tiledlayout and subplot do not work together. They each offer a means of adding multiple axes to a figure. Tiledlayout is the ...

2 mesi fa | 1

Risposto
How to update rfplots
I'm not quite sure how to interpret the problem. Here are two guesses. > if the plots are to be updated, they will be added ...

2 mesi fa | 0

Pubblicato


Plotting with Style: Synchronizing Color and LineStyle with SeriesIndex
Guest Writer: Eric Ludlam Joining us again is Eric Ludlam, development manager of MATLAB’s charting team. Discover more...

2 mesi fa

Thumbnail

Pubblicato


Creating Ridgeline Plots: From Pulsars To Pop Culture
In 1979, an English rock band produced what Rolling Stone would describe as one of the best albums of all time with an...

3 mesi fa

Thumbnail

Risposto
Strings are converted to cells during readtable
When using the readtable(filename,opts,Name,Value) syntax, only a limited number of name-values pairs are available as input ar...

3 mesi fa | 1

Risposto
Show image when i use dropdown button
You need to specify the axes handle so the image is generated in the intended axes. For example, image(app.UIAxes,__) images...

3 mesi fa | 1

Carica altro