Réponse apportée
How i add the button for the Time axis to user can change time in the given MATLAB App designer
The property you want to change is app.UIAxes.XLim. You could implement this with a ButtonPressedFcn callback (like you have don...

environ 2 ans il y a | 0

Réponse apportée
Creating Variable Names from Strings
As other users have stated, it is generally not advisable to dynamically generate variable names from a string using eval. Howev...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
How to get Sharing Details in App Designer
When you go to package the app there is a field for the version number. When the app is installed, the user can view the ve...

environ 2 ans il y a | 0

Réponse apportée
Issues with EDF file data record duration
https://www.mathworks.com/help/signal/ref/edfread.html https://www.mathworks.com/help/signal/ref/edfwrite.html You will have t...

environ 2 ans il y a | 0

Réponse apportée
how MATLAB determines order of monitors
https://www.mathworks.com/help/matlab/ref/matlab.ui.root-properties.html#buc8_0n-MonitorPositions Can you share the values you ...

environ 2 ans il y a | 0

Réponse apportée
How to combine multiple .fig files into one .fig file?
https://www.mathworks.com/matlabcentral/answers/444601-copying-the-content-of-a-figure-to-another-figure

environ 2 ans il y a | 0

Réponse apportée
how to perform lag correlation between two spatial data?
If you input two matrices, A and B, into corrcoef, corrcoef will convert them into their vector representation equivalent to cor...

environ 2 ans il y a | 0

Réponse apportée
How to run standalone application from the folder where it is located?
cd yourLocalFolder; system("yourApp.exe") % If your app has additional inputs: system('"yourApp.exe" arg1 arg2') % If you ...

environ 2 ans il y a | 0

Réponse apportée
Error using function: Too many input arguments.
"net" is not configured for as many inputs as you are providing. You will either need to reduce your number of inputs or edit th...

environ 2 ans il y a | 0

Réponse apportée
If part of While loop not executing any functions
You're never entering the loop. You will only ever enter that loop if PF = 0 because isempty(PF) will always yield 0 if a value ...

environ 2 ans il y a | 0

Réponse apportée
Generating PDF or DOC Report from MATLAB App's Textbox Data and Graph
This is a fairly straightforward app that could just be implemented as a Live Script instead. From there it's as simple as expor...

environ 2 ans il y a | 0

Réponse apportée
Issue with MATLAB App Designer and Undefined Function Error
It is generally advised to keep all necessary code contained within the app when possible. I would recommend implementing your f...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Plot graph not shown
I would recommend tiledlayout instead. stackedplot seems to be dynamically resizing your plots, tiledlayout does not do this. Of...

environ 2 ans il y a | 0

Réponse apportée
How to reduce the execution time of the given piece of code?
The Profiler is the perfect tool for this. You will be able to see a thorough breakdown of the runtime of your code, and identif...

environ 2 ans il y a | 1

Réponse apportée
R2023b Silent Install Fails on Windows
https://www.mathworks.com/support/contact_us.html

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Slow uiaxes interactions with app designer
Most of the delay you're seeing is due to the uifigure, not uiaxes. Using figure with uiaxes instead of uifigure should speed th...

environ 2 ans il y a | 0

Réponse apportée
how to close all apps simultaneously?
Generally, you can just use "delete" myHandle = myApp; delete(myHandle) I would recommend baking this into the "UIFigureClose...

environ 2 ans il y a | 0

Réponse apportée
How to select a specific cell in UITable?
[rows, ~] = find(value == UITable.Data) UITable.Data(r,:)

environ 2 ans il y a | 0

| A accepté

Réponse apportée
How to save parameter function in app designer?
If by "save the data" you just mean you want to store it for use within your current MATLAB session (within the App or outside),...

plus de 2 ans il y a | 0

Réponse apportée
Help: How to use 'for' loop to plot multiple different values when using while loop for function?
If you're trying to avoid plotting on the same figure, you could move your "figure(1)" command into the "if" statement and place...

plus de 2 ans il y a | 0

A résolu


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

plus de 2 ans il y a

A résolu


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

plus de 2 ans il y a

A résolu


Create a vector
Create a vector from 0 to n by intervals of 2.

plus de 2 ans il y a

A résolu


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

plus de 2 ans il y a

A résolu


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

plus de 2 ans il y a

A résolu


Find max
Find the maximum value of a given vector or matrix.

plus de 2 ans il y a

A résolu


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

plus de 2 ans il y a

A résolu


Inner product of two vectors
Find the inner product of two vectors.

plus de 2 ans il y a

A résolu


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

plus de 2 ans il y a

A résolu


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

plus de 2 ans il y a

Charger plus