답변 있음
Getting the value of variable from its name
eval will do this, but see the link posted by Stephen explaining all the reasons you should avoid using eval: https://www.mathwo...

4년 초과 전 | 4

답변 있음
error: Out of memory. The likely cause is an infinite recursion within the program.
As this looks like a homework assignment, I'm not going to provide the direct answer to how to do this in MATLAB. However, I can...

4년 초과 전 | 0

답변 있음
How to save obtained information from matlab in Excel
See if this doc page helps: Write Data to Excel Spreadsheets

4년 초과 전 | 0

| 수락됨

답변 있음
Assign a table coloumn a particular data type
You cannot mix data types within a double matrix, but you can mix data types within a table. So, you cannot convert two columns...

4년 초과 전 | 1

| 수락됨

답변 있음
Adding titles squashes one of my images in a TiledChartLayout (R2020a)
I opened the figure you created, and I see you have set the GridSize to [2756 3840]. TiledChartLayout is attempting to keep eac...

거의 5년 전 | 1

| 수락됨

답변 있음
Drawing upside down cone using spherical coordinates.
The issue you are facing is that when you call meshgrid you are specifying three input vectors, so the output matrices are going...

거의 5년 전 | 1

| 수락됨

답변 있음
Boxplot for both x and y axis with different box widths.
The boxplot command creates a group of lines, so if you wanted to adjust the box widths you would need to manually adjust the XD...

거의 5년 전 | 0

| 수락됨

문제를 풀었습니다


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

거의 5년 전

답변 있음
How to draw the contour lines in MATLAB.
The answer depends in part on how the data is formatted in Excel, but something like this should get you started (see attached s...

거의 5년 전 | 0

답변 있음
use x,y,z coordinates from 3D matrix and store the result in new 3D matrix
You have three options: Split the matrix apart again before operating on it. Operation on "slices" of the matrix using indexin...

거의 5년 전 | 0

답변 있음
how do i combine two bar graphs
I could be misunderstanding your question, but I suspect the problem you are facing is that your bar graphs are perfectly overla...

대략 5년 전 | 4

| 수락됨

답변 있음
Axes tag disappears after imagesc
The difference in behavior is due to the different value of the NextPlot property between axes and uiaxes. Most graphics comman...

대략 5년 전 | 1

| 수락됨

답변 있음
Ending while loop with an input from the user
I'm going to ignore most of the tambolenler function, because I don't think it is needed to answer your question. I think you h...

대략 5년 전 | 0

| 수락됨

답변 있음
Drawrectangle on multiple tiles or figures using clickcallback
When you call drawrectangle, you need to indicate which axes/tile you want to draw into. If you call drawrectangle three times, ...

대략 5년 전 | 0

| 수락됨

답변 있음
How to solve "Reference to non-existent field 'net'" on app designer?
You did not indicate what line of code the error message is coming from, but I'm guessing the error is coming from one of these ...

대략 5년 전 | 0

답변 있음
How to correct cluttered axes in my plot in Matlab GUI?
It looks like you've set the XTickMode (and possibly also XTickLabelMode) to manual. This means that when you add new data to t...

대략 5년 전 | 0

| 수락됨

답변 있음
Radio button and format of plot axis in app designer and its corresponding plot
I think the problem you are having is that you are not passing your axes handle into the cla function. cla(app.UIAxes, 'reset')...

대략 5년 전 | 0

| 수락됨

답변 있음
Undefined function 'graphicsversion' for input arguments of type 'matlab.ui.Figure'.
Actually, I looked a little closer at the error message you are getting, and it looks like you have an old copy of uigetmodemana...

대략 5년 전 | 0

답변 있음
Undefined function 'graphicsversion' for input arguments of type 'matlab.ui.Figure'.
The graphicsversion function was undocumented and was removed in MATLAB R2018a. You should remove any use of the graphicsversio...

대략 5년 전 | 1

답변 있음
How can i use linkaxes with multiple imshow in appdesigner?
linkaxes only started working with UIAxes in MATLAB R2020b. If you are using an older release and you cannot upgrade, I recomme...

대략 5년 전 | 0

| 수락됨

답변 있음
How to remove the y axis and tick marks but keep the tick label and axis label?
You can remove the tick marks by setting the TickLength property on the axes to [0 0], but that will remove ticks from both the ...

대략 5년 전 | 1

답변 있음
Creating a table of two indexes
You need to merge F and C into a single matrix and transpose that matrix: fprintf('%8.1f\t%8.1f\n',[F' C']')

대략 5년 전 | 0

| 수락됨

답변 있음
How to use ga() without generating a prepopulated figure with stop and pause button with matlab app
This looks like a limitation of the ga code that creates the buttons, as I can't see any way to control where those buttons are ...

대략 5년 전 | 0

답변 있음
Thresholding for different values and save all figures automatically
You need to add a for loop, and update the filename based on the level, so you don't overwrite the same file. In the example bel...

대략 5년 전 | 0

| 수락됨

답변 있음
How to remove colorbar and heatmap black borders?
If you want to remove the colorbar, you can set the ColorbarVisible property to 'off': h = heatmap(magic(5)); h.ColorbarVisibl...

대략 5년 전 | 3

| 수락됨

답변 있음
Error using area plot in App Designer
I think you've created a variable with the name area somewhere in your code. Can you add this code, immediate above the line of...

대략 5년 전 | 0

| 수락됨

답변 있음
control inner positions of ui axes in app designer
Mischa Kim is correct that starting in R2020b you can set the InnerPosition property (or PositionConstraint property) on UIAxes ...

대략 5년 전 | 0

답변 있음
App designer (Matlab 2020b) does not open *.mlapp file
I've attached a fixed version of your app (app2fixed.mlapp). The problem with the app was that one of the UIAxes stored in the ...

대략 5년 전 | 3

| 수락됨

답변 있음
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

더 보기