Risposto
Matlab App Designer UIAxes 2d Plot
Without knowing what you are plotting, all I can recommend is changing to a 2D view. You can do so as shown below. Note, in App ...

circa 4 anni fa | 0

| accettato

Risposto
How do I delete a callback function from an app in App Designer?
Does the callback text hightlight when you click it as shown below? Within App Designer, you can right click the callback und...

circa 4 anni fa | 10

| accettato

Risposto
How can I create a 3D intensity map, or 3D scatter plot where colour represents intensity?
The dimensions of the matrix, M, is 3x3x3. I am going to assume the third dimension is your x, y, and z coordinates, where 1 is ...

circa 4 anni fa | 0

| accettato

Risposto
How to generate correct sine wave
== correct == fs = 50; t = 0:1/fs:1-1/fs; x = sin(2*pi*2*t); plot(t,x) == non-correct fs = 50; t = 0:1/fs:1-1/fs; x...

circa 4 anni fa | 0

Risposto
How to show an image of labels in colors and show the colorbar
img = round(10*rand(512)); label2rgb(img); imshow(img) colorbar colormap('jet') caxis([1 10]) %You can change the range for...

circa 4 anni fa | 2

| accettato

Risposto
I want to drew a map based on longitude and latitude limits and i want the to see the countries borders
figure ax=axes; land = readgeotable("landareas.shp"); geoshow(land,"FaceColor",[0.15 0.5 0.15]) lakes = readgeotable("worldl...

circa 4 anni fa | 0

Risposto
What does it mean if at the end of the instruction “; ” ?
"hello world" "hello world";

circa 4 anni fa | 0

Risposto
How can I solve this error "Array indices must be positive integers or logical values." and make a condition to fix it as index?
mindistD > maxrange^2 and mindistD<maxrangeD2 gave no results. Is it suppose to be mindistD < maxrange^2 and mindistD>maxrangeD...

circa 4 anni fa | 0

| accettato

Risposto
How can I move the result of the 'why' function into the editor window and store it into a variable?
You could edit the function to provide an output. open why change function why(n) to function a = why2(n) You can save thi...

circa 4 anni fa | 0

Risposto
How to overlap several maps?
You could edit the colormap to make the land white. figure image colorbar colormap turbo figure(2) image colorbar cmap...

circa 4 anni fa | 0

| accettato

Risposto
Create Matrix from Multiple Matrices
A = [1 2 3]; B = [4 5 6]; C = [7 8 9]; D = []; for i = A for ii = B for iii = C D = [D;i ii...

circa 4 anni fa | 0

Risposto
Plot velocity over distance(plot over line) from the attached csv file?
I'm not quite sure what you are looking for, so here are some techniques: Load Data as table [filename, folder] = uigetfile(...

circa 4 anni fa | 1

| accettato

Risposto
How to set front and back lines on plot with yyaxis left and right
That is interesting. While I try and figure out if there is a solution to this, you can fake it til you make it with this: x = ...

oltre 4 anni fa | 0

| accettato

Risposto
Projecting a plot onto a second monitor through an App made in the App Designer.
Yes. There are multiple ways of doing this with App Designer. Below are two approaches. You can write a callback function that ...

oltre 4 anni fa | 0

| accettato

Risposto
Vectorising Multiplying each column from a matrix with a square matrix and the tranpose of this column
Can you do the following? h = rand(2790,3591); Pn = rand(2790,2790); size(h'*Pn*h)

oltre 4 anni fa | 1

Risposto
Attached are the plots of a i get from a csv file imported to MATLAB. I want to declutter the plot (remove the noise captured by measuring instrument) zoom on in the data.
open('untitled2.fig') xlim([-0.5 2.5]) % changed domain min and max to zoom in. h=gca; % obtained handle of the current axes ...

oltre 4 anni fa | 1

| accettato

Risposto
How do I make an app on appdesigner that when a button is pressed and the current time is later than an indicated time
You could create a pushbutton with the following callback: % Button pushed function: Button function ButtonP...

oltre 4 anni fa | 0

Risposto
How to make Slider in APP Designer to move automatically with the output value we calculated?
Yes, you could make two Edit Field (Numeric) components, one for A and the other representing B. You can add the following call...

oltre 4 anni fa | 0

| accettato

Risposto
how to convert a 3D array into a n 2D arrays
A=rand(20,1000,30); for i = 1:20 B{i} = squeeze(A(i,:,:)); end B

oltre 4 anni fa | 0

| accettato

Risposto
Error with parsing data from one window to another in app designer
I like to keep things simple and just read from main app. Main app (Analyzer): properties (Access = private) fr...

oltre 4 anni fa | 0

| accettato

Risposto
X,Y cordinates in a Matrix
A = [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...

oltre 4 anni fa | 1

Risposto
Create Text Box in PowerPoint file
The following script was attached to the answer here: https://www.mathworks.com/matlabcentral/answers/99150-is-there-an-example-...

oltre 4 anni fa | 0

Risposto
Ploting (x,z) and (y,z) data on same plot
I'm not sure what you mean by the x and y measurements being separated by 1 meter. Below is a guess at want you want. Please cla...

oltre 4 anni fa | 0

| accettato

Risposto
How can I rotate a matrix 45 degrees?
C = [-6 -6 -7 0 7 6 6 -3 -3 0 0 -6; -7 2 1 8 1 2 -7 -7 -2 -2 -7 -7]; p = plot(C(1,:),C(2,:)); xlim([-10 10]); ylim([-10 10]);...

oltre 4 anni fa | 0

| accettato

Risposto
Is there a way to store x,y coordinates from the brush tool in app designer in an app designer edit field (2021b)?
Try the following to recieve the x and y coordinates. index = app.UIAxes.Children.BrushData; xcoord = app.UIAxes.Children.XDat...

oltre 4 anni fa | 1

| accettato

Risposto
App Designer - How do I pass a structure or array from one app to another?
The link below demostrates how to communicate between apps when using app designer. https://www.mathworks.com/help/matlab/creat...

oltre 4 anni fa | 0

| accettato

Risposto
Delete internal faces from 3D plot
You could manually remove the faces as such: Coords = [ 0 2 0 0 2 1 0 3 0 0 3 1 ...

oltre 4 anni fa | 0

Risposto
use of parentheses confusion
In the first line, 10 is added to the 1 so you end up with 11:15 %This creates an array starting from 11 and ending at 15 at i...

oltre 4 anni fa | 2

| accettato

Risposto
wanna Plot this one its inductor voltage graph in my case
If you want to create that plot: y=[1 2 0 -1 1 2 0 0 2 3 1 0 0]; x=[0 1 1 2 2 3 3 4 4 5 5 6 7]; figure plot(x,y) ylim([-3 3...

oltre 4 anni fa | 0

| accettato

Risposto
remove grid lines completely
After opening the figure, you can type the following assuming there is only one axes on the figure: grid off or grid(gca,'off...

oltre 4 anni fa | 0

Carica altro