回答済み
Why do my 3D plot axis tick marks keep repeating?
What you are running into are two quirks of how axes behaves. First, when applying the tick labels, MATLAB starts at the first ...

5年以上 前 | 1

回答済み
Slow When Plotting on UIAxes
The figures created by App Designer are based around web technologies (like HTML and CSS) while the separate figures are based a...

5年以上 前 | 0

回答済み
How to overlay two scatter plots over each other. Each with separate colour scales.
An axes can have only one Colormap, so you have three options: Hard-code RGB color values for one (or both) of your scatter obj...

5年以上 前 | 0

| 採用済み

回答済み
Embed Video Application Within MATLAB Application
When you say "a separate window" do you mean: a separate figure window (from MATLAB) another MATLAB window of some sort (not a...

5年以上 前 | 0

回答済み
Interplay between .Visible='off' and axis(app.UIAxes, 'off') in App Designer
This is a long-standing behavior of axes that was inherited by UIAxes. On most graphics objects, Visible does what you think it...

5年以上 前 | 0

回答済み
Make UIAxes Background invisible or hide it in APP Designer
This behavior of uiaxes has changed in MATLAB R2020b. If you check the release notes for R2020b: BackgroundColor property of U...

5年以上 前 | 0

回答済み
Background Color of UIAxes
This behavior of uiaxes has changed in MATLAB R2020b. If you check the release notes for R2020b: BackgroundColor property of U...

5年以上 前 | 0

| 採用済み

回答済み
When opening R2020b .mlapp file in R2018b, automatic conversion removes all UI elements and associated auto-generated code
This is a known bug in App Designer apps that are saved in MATLAB R2020b and loaded in R2019b or older. The bug will cause any ...

5年以上 前 | 0

| 採用済み

回答済み
Polar plot in App Designer (Edit: Not possible April 2020)
At the moment the only way to use a polar axes within App Designer is to call the polaraxes command from within your code (such ...

約6年 前 | 1

| 採用済み

回答済み
Plotting with datetime in App Designer
I suspect the issue you are running into is the default reset behavior of UIAxes. By default, the plot command calls newplot. T...

約6年 前 | 1

回答済み
How to use colormap() for a vector of images X in order to display indexed images from vector X?
The issue you are encountering is that |displayData| is normalizing the image data so that the maximum value of each image is eq...

8年弱 前 | 0

回答済み
How do I plot time (hh:mm:ss.000) vs samples as imported from a .csv file?
If you upgrade to R2018a, this process is a little more straightforward, but this code will work in R2016a. Step 1: Import yo...

8年弱 前 | 1

回答済み
Difference in the behavior of transparency in R2015a and R2016a
The effect you see is because the patches overlap one another. The red patch overlaps both the green and the blue patch, so you ...

8年弱 前 | 0

回答済み
Output of a mex file is not the same as the recursively-written computational routine
The problem is in these lines: //Getting a pointer to the real data in the output matrix outPUT = mxGetDoubles(plhs[0]);...

8年弱 前 | 0

| 採用済み

回答済み
How to read all text files in a folder with unknown number of files?
You can use the |<https://www.mathworks.com/help/matlab/ref/dir.html dir>| command to generate a list of files that match a spec...

8年弱 前 | 1

| 採用済み

回答済み
GUI handles disappear after calling script
The issue is your call to |<https://www.mathworks.com/help/matlab/ref/findobj.html findobj>| and the |<https://www.mathworks.com...

8年弱 前 | 1

| 採用済み

回答済み
GUI handles disappear after calling script
I'm having trouble running your example. I think you are missing some pieces, including the file |ScriptCalledByCallbackTest.m|....

8年弱 前 | 1

回答済み
How to plot just a colorbar without plot?
A colorbar must be attached to an axes, so you have (at least) two options: # Create an axes, attach a colorbar, then make th...

8年弱 前 | 3

回答済み
multi-line xvalues when making a heatmap with a matrix
The |heatmap| function currently doesn't allow multi-line x-value labels.

8年弱 前 | 0

回答済み
How to change X and Y axis values on a heatmap.
Sorry I'm late to this question, but in case you are still looking for an answer to your second question ("Another question is h...

8年弱 前 | 0

解決済み


Add two numbers
Given a and b, return the sum a+b in c.

約8年 前

回答済み
How can I combine two objects of different subclasses into the property of another class?
Your classes need to derive from the |<https://www.mathworks.com/help/matlab/ref/matlab.mixin.heterogeneous-class.html matlab.mi...

約8年 前 | 1

| 採用済み

回答済み
stacked histogram and xaxis issues
In order to use the |bar| command to plot a |histogram|, you need to specify the X-values when you call the |bar| command. For e...

約8年 前 | 0

| 採用済み

回答済み
Zoomed in and inset histogram
Sounds like you have two questions: First Question: How do I "zoom in" a histogram? The answer depends on what exactly you...

約8年 前 | 0

| 採用済み

回答済み
Unable to reverse the order of numbers on the Y-axis
Without being able to run your code this is just speculation, but it looks like you may be double-flipping your Y-axis tick labe...

約8年 前 | 0

回答済み
GCA CurrentPoint with the DateTime Ticks on the X Axis
Because the |CurrentPoint| property stores x, y, and z all together in a single matrix, the |CurrentPoint| cannot reflect the mi...

約8年 前 | 5

| 採用済み

回答済み
Convert x-axis values to datetime
There is no documented way to directly change the ruler type, but you can do it by plotting |NaT| (not a time), for example: ...

約8年 前 | 0

回答済み
How can i fix this "Attempt to execute SCRIPT settings as a function"?
It looks like you have installed a third-party toolbox called "psat" (Is this the "Power System Analysis Toolbox"?) that has a f...

8年以上 前 | 3

回答済み
Plot a moving dot inside a quiver plot that is constantly being updated
Regarding this line of code: scatter(H, Xball, Yball, 12, 'm', 'filled'); % will work but will keep showing all the balls ...

8年以上 前 | 1

| 採用済み

回答済み
Why imhist do not run?
|<https://www.mathworks.in/help/images/ref/imhist.html imhist>| is part of the Image Processing Toolbox. Could the problem be th...

8年以上 前 | 0

さらに読み込む