Community Profile

photo

Adam Danz

MathWorks

Last seen: 1 dag ago Active since 2014

Followers: 4   Following: 13

Message

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

Statistics

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

View badges

Feeds

Answered
how to scale arrows
Quiver scaling can be tough to understand. We recently added the ScaleFactor property (R2024a) to help out. See this answer fo...

ongeveer 7 uur ago | 0

Answered
How can i set the dimension of the arrow in a quiver plot?
Understanding quiver auto scaling When using quiver(X,Y,U,V,__), U and V are the horizontal and vertical vector magnitudes. Ho...

ongeveer 8 uur ago | 0

Answered
rotate3d not working properly with matlab GUI and pcshow function
Fixed in R2024a Thanks for sharing this info! Rotation with 3D point clouds was improved in R2024a. This should fix the probl...

ongeveer 10 uur ago | 0

Answered
view() not returning [az, el] ??
The azimuth and elevation outputs are returned as two separate outputs. f = figure('visible','off'); ax = gca(f); [az, el]...

ongeveer 15 uur ago | 1

Highlighted


AMA: The secret of staff contributors in the Answers forum
Welcome to MATLAB Central's first Ask Me Anything (AMA) session! Over the next few weeks, I look forward to addressing any...

2 dagen ago | 1

Answered
One legend for a group of subtightplots
That FEX function subtightplot is very useful but since R2019b you can use tiledlayout instead and since R2020b, tiledlayout sup...

4 dagen ago | 1

| accepted

Published


Introducing the Color Picker Component
Guest Writer: Kristen Amaddio Kristen Amaddio is the Senior Team Lead for the MATLAB UI Components team. She first joined...

4 dagen ago

Thumbnail

Answered
Why are my error bars multicoloured with no line?
Understanding array size compatibility errorbar, like plot, supports mixed array sizes in input arguments as long as the sizes ...

4 dagen ago | 0

Answered
How to erase a specific elements for the name of string values and then replace them?
Assumptions: "Temp_06_02_24_10_39_34 = 32"; is a string This is not a variable name The month is in the 2nd numeric positio...

9 dagen ago | 1

| accepted

Answered
How to make sparsity pattern graph with grouping
Using pcolor This solution uses pcolor and converts the table of 0s and 1s into grouping values that are used to assign color t...

9 dagen ago | 2

Answered
UIalert icon disappears in deployed application
Thanks for reporting this, David. We are aware of the problem. Stay tuned for updates.

9 dagen ago | 0

| accepted

Published


Introducing Transparency to Legends and Rectangles
Guest Writer: Afiq Azaibi Today's R2024a feature highlight is written by Afiq Azaibi, a developer on the Charting Team and...

11 dagen ago

Thumbnail

Answered
Plot of histogram and probability distribution function.
To equate the colors between the histogram and line pairs, access the object handles from the plot output and then set the Serie...

15 dagen ago | 0

| accepted

Answered
Subplot x-axis
Use linkaxes to link the two x axis limits. When the limits of one x-axis changes, the other will adjust. I made 6 changes to...

15 dagen ago | 0

| accepted

Answered
How to have a different interval between xticks and xticklabels on a datetime plot?
The x_period_dates variable is all you need. It's a datetime vector containing all of the dates at midnight. You just need to ...

15 dagen ago | 0

| accepted

Answered
How to draw an histogram?
> How do I draw an histogram knowing the number of times all elements in a 150x150 matrix appears using matlab? Both histogram ...

23 dagen ago | 0

| accepted

Answered
Given a contour plot is there a function which returns a matrix corresponding to the density of lines at a given (x,y) coordinate?
No, there is not a function that computes the density of contour lines. However, you could build such a function. First, you...

24 dagen ago | 1

| accepted

Published


R2024a release: What’s new in Graphics and App Building?
There are dozens of new graphics and app building features in the MATLAB R2024a release. Here are some highlights to keep...

24 dagen ago

Thumbnail

Answered
How to update vehicle's state variable in simulator?
I think the choice between the two options depends on a few factors. Relying on the state space equation (x'=Ax+Bu) involves c...

24 dagen ago | 0

Answered
Plotted patch changes size
Cause of the problem Indeed you are setting the patch location based on the ylimits but you are not setting the ylimits. After...

24 dagen ago | 1

| accepted

Answered
Create mean y values by multiple groups in one graph
Use groupsummary to compute the means of each group. Then plot the results using bar() with categorical x values. This assumes...

24 dagen ago | 0

Answered
Plot a time series plot in customized rectangle
Previous answers suggest changing the size of the figure window which is one solution. Another solution is to set the size of...

24 dagen ago | 1

| accepted

Answered
Generate 3D histogram while capping the height of bars
How to cap the height of a 2D histogram without affecting the max color for each bar This is tricky because hist3 does not retu...

25 dagen ago | 0

Answered
Change Colors of Multiple Objects Efficiently in AppDesigner with Switch
Looks like you're creating an exciting custom theme for your app @Brianna Billingsley! Here are some strategies to reduce the ...

28 dagen ago | 1

| accepted

Answered
How to unfade legend placed on an empty (invisible) plot?
It's much better to use tiledlayout than subplot. With tiledlayout, the placement of the legend and the global title can be par...

28 dagen ago | 0

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

ongeveer een maand ago | 2

| accepted

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

ongeveer 2 maanden ago | 1

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

ongeveer 2 maanden ago | 0

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

2 maanden ago | 0

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

2 maanden ago | 0

Load more