回答済み
How do I make a system to add and delete tabs in a GUI with App Designer?
This is because in app designer you need to define the property names before you can use them in the code. I would suggest you a...

1年以上 前 | 1

回答済み
Crate a changeable label in programmable App (GUI)
I am assuming that you are using app designer. If so you should place the uilabel in the UI on the canvas. Then you can access ...

2年弱 前 | 0

回答済み
How to replace values in a very large array
You can modify what @dpb suggested as follows. xx=find(tdcRelTime < 1.5e10); idx_Laser(ismember(idx_Laser,xx)) = 0;

2年弱 前 | 1

| 採用済み

回答済み
How close secondary apps when the main app closed?
You will need to store a reference to the secondary app in your main app. This will allow you to close it in the CloseRequestFcn...

2年弱 前 | 0

回答済み
StandAlone Matlab app don't show the points with the interection with the mouse
Enable or Disable Built-In Interactions To control whether a set of built-in interactions is enabled within a chart, use the di...

2年弱 前 | 1

回答済み
My MATLAB 2022a not talking to Python 3.9.13
It seems that python is not your on paths list, hence its not auto detected by Matlab. You can manually set the executable path...

2年弱 前 | 0

| 採用済み

回答済み
How to create Random Binary Number with fix amount of 1 and 0?
You can try the following. bin_len = 30; num_1 = 4; n = 100; binfunc = @(~)sum(pow2(randperm(bin_len,num_1)-1)); bnout = ar...

約2年 前 | 0

回答済み
How to increase spacing between axis ticks in plot with a lot of data
since your data is only between 62.4 and 62.6, you can limit your y axis to these values using the ylim function. fakedata = [l...

約2年 前 | 0

| 採用済み

回答済み
Add Array in a Cell in a For Loop
Your current code is creating a nested cell array. You can change it as follows. % for testing % i = 1; x_wing = 1; y_wing ...

約2年 前 | 1

| 採用済み

回答済み
Is there a way to get the redirect url after a https / api request?
You can use the matlab.net.http interface to follow the redirects. https://www.mathworks.com/help/matlab/ref/matlab.net.http.re...

2年以上 前 | 2

| 採用済み

回答済み
How do I get the final URL from a redirect link? (like requests.get from python)?
You can use the matlab.net.http interface to follow the redirects. https://www.mathworks.com/help/matlab/ref/matlab.net.http.re...

2年以上 前 | 0

回答済み
Hi, everyone! I got an error while runnig this code . ""Error setting property 'AlturaactualEditField' of class 'app2': Cannot convert double value 3.79215 to a handle "
You need to assign it to the value of editfield rather then the edit field itself app.AlturaactualEditField.Value = math(cont);...

2年以上 前 | 0

| 採用済み

回答済み
Comparing two differently-sized arrays
The best way to do what you are requesting is to convert your arrays to timetables and then either use the synchronize function ...

2年以上 前 | 0

回答済み
Looking for a function minimizer subject to nonlinear constraints with absolute function tolerance.
You can try setting the 'TolFun' parameter in the optimset. You can refer to the following documentations for more details htt...

2年以上 前 | 0

回答済み
MATLAB app designer, how to update value of a property in declared callback function
You can try the following. configureCallback(app.arduino,"terminator",@app.readSerialData)

2年以上 前 | 0

回答済み
How to declare variable in App Designer
Do you mean you want to set the value of A equal to the value of edit field ? app.A = app.EditField.Value;

2年以上 前 | 0

回答済み
How to set defaults for GridLayout?
In this case I believe the only way to change the default column spacing is to edit the code shipped by matlab.

2年以上 前 | 0

回答済み
Static Java methods won't execute with parfor loop
The dynamic java class path is only modified in the process calling the javaaddpath. So for parallel you will have to add your j...

2年以上 前 | 1

| 採用済み

回答済み
How to change automatically generated uibutton properties in another function?
You can store all your buttons as an array in the app property orientationButtons. function create_buttons(app) % % make b...

2年以上 前 | 0

| 採用済み

回答済み
How to change training and plotting options when training a deep network?
From matlab documentation, you can only use this option if you specified validation data as well. https://nl.mathworks.com/help...

2年以上 前 | 0

回答済み
How to write our own Loss function in Deep neural network layers.
You can first check if the loss function is already available in Matlab here. https://www.mathworks.com/help/deeplearning/ug/de...

2年以上 前 | 0

| 採用済み

回答済み
Replace stale / repeating data with NaN in a table
You can try this. Var1 = [ 3 , 2, 5, 4, 4 , 4, 4, 6, 2, 3 , 5, 5 ,5 ,5 ]; i = Var1(2:end) == Var1(1:end-1); i = [false i]; V...

3年弱 前 | 0

回答済み
How to use parpool for independent expressions
You can use the parfeval function to make these calculations on a worker thread. x = 1; y =2; z=3; p=parpool('local',4) Fs...

3年弱 前 | 1

| 採用済み

回答済み
This is a part of a code and I want to add something to it, description below
In your code Heff(:,P==0) = []; %Delete User Row This will actually delete columns not rows in Heff. Not sure if that is what ...

3年弱 前 | 0

| 採用済み

回答済み
How to save output of double loop?
You should use the fullfile function to create the filepath. Your call to imwrite function is in the outer for loop, hence it wi...

3年弱 前 | 1

| 採用済み

回答済み
How to make a colourful interactive GUI spectrum slider?
While there is no slider object which have the spectrum as the background, you can however achieve this effect by layering uisli...

3年弱 前 | 0

回答済み
How to import and evaluate multiple files in matlab?
I am assuming all your data files have the same format. You should convert your current code into a function and call it 3 times...

3年弱 前 | 0

回答済み
Plot two functions with different pause rates at same time.
You can try something like plotting j every few steps. frames = 239; trunk = 2987; hold on lastjplotted = 0; for i = 1:tr...

3年弱 前 | 0

| 採用済み

回答済み
Onehotencode function is giving more columns which are filled with zeros than the number of categories.
Because you are converting the entire matrix in to a categorical matrix, the categories for the entire matrix are common. If you...

3年弱 前 | 1

| 採用済み

回答済み
Bring components to the front in app designer
If you only wish to display the image and not interact with it (eg zoom) then perhaps you can use uiimage to display your image ...

3年弱 前 | 0

さらに読み込む