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

oltre 4 anni fa | 4

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

oltre 4 anni fa | 0

Risposto
How to save obtained information from matlab in Excel
See if this doc page helps: Write Data to Excel Spreadsheets

oltre 4 anni fa | 0

| accettato

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

oltre 4 anni fa | 1

| accettato

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

quasi 5 anni fa | 1

| accettato

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

quasi 5 anni fa | 1

| accettato

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

quasi 5 anni fa | 0

| accettato

Risolto


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

quasi 5 anni fa

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

quasi 5 anni fa | 0

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

quasi 5 anni fa | 0

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

circa 5 anni fa | 4

| accettato

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

circa 5 anni fa | 1

| accettato

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

| accettato

Risposto
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')...

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 1

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 1

Risposto
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']')

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 3

| accettato

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 3

| accettato

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

circa 5 anni fa | 1

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

circa 5 anni fa | 0

Carica altro