Respondida
Dividing a Number with a Vector Results in a new Vector with wrong mean
Because they are not equal mathematically. Suppose that: VectorInit = [a,b,c] meanVectorInit = (a+b+c)/3 VectorTarget = [60...

casi 5 años hace | 2

| aceptada

Respondida
How to save GUI plots
Before you plot, you should save your figure handle into a variable so that you can put it as an input of saveas function. Ins...

casi 5 años hace | 0

Respondida
How to make two drop down Dependent
Here is a basic test app I have created. Please read comments carefully. classdef testDropDown < handle properties ...

casi 5 años hace | 1

| aceptada

Respondida
Find all lines of a matrix which have a matching pair of values
Basically you can use this: Finds the first row of the pairs' elements seperately as logical indexes. Then adds them together....

casi 5 años hace | 0

Respondida
How to scroll and display my GUI in full screen
It seems like in GUIDE you have added an axis and then added a panel on it. Also you added some text boxes and edit boxes on you...

casi 5 años hace | 1

| aceptada

Respondida
Error while using a GUI
Hi Tamir, Just change line 116 as follows, definetely it will work: [pathstr,name,ext]=fileparts(fullfile(pathname,file1));

casi 5 años hace | 0

| aceptada

Respondida
How to plot more lines of xtick label
Hi, Have you tried this function from FEX? my_xticklabels

casi 5 años hace | 0

| aceptada

Respondida
How to combine several pieces of code in a For Loop?!
Hello William, Just by changing your y array it works. Try this: xStart = 0; xFinishArray = 1:4; y = [0,2,0,2,0,2]; hF...

casi 5 años hace | 0

Respondida
Lookup tables for ICE data mapping
What do you mean by slicing? Unfortunetely I can't look at the text file but as far as I understand you have a set of data for e...

alrededor de 5 años hace | 1

| aceptada

Respondida
HEEEEELP....... Array cells comparing....
Hi, Look at the function ismember to search if your element exists in another array. Please share your arrays as an example a...

alrededor de 5 años hace | 1

| aceptada

Respondida
My for loop gives an error
You can put your symbolic 4x4 matrices into a cell array. Also your for loop is wrongly defined like for S = [1 2 3...]. You s...

alrededor de 5 años hace | 1

| aceptada

Respondida
Error finding matrix indices where elements obey a condition
Hi Ferda, Please see my comments below: % first convert it to double array: A = double(input_of_hidden_layer2); % indexing...

alrededor de 5 años hace | 0

| aceptada

Respondida
Indexing to cell arrays
Try this: X = [0.1 3 0.2; 2 5 4;1 0.3 5]; [xlocs,ylocs] = find(X<1 & X>0); % locations of values, you have 3 values. xlocs' f...

alrededor de 5 años hace | 0

Respondida
MATLAB GUI Radiobutton Control
Hi Oğuzhan, You can just simply do this: When option1 selected, enable edit1 and disable edit2. (radiobutton1 callback) set...

alrededor de 5 años hace | 0

| aceptada

Respondida
How to group an array and then replace each group with different numbers?
Try this: A = [1 1 1 0 0 0 1 0 0 1 0 1 1 0 0]; C = [4, 5, 6, 3]; A(end+1) = 1; locRise = find([0 diff(A == 0) > 0]); loc...

alrededor de 5 años hace | 0

Respondida
Sort struct fields by their length
Hi, Try this: % Create myStruct with Alphabet Fields and add random 1XN array to the % fields fieldList = cellstr(('a':'z'...

alrededor de 5 años hace | 0

Respondida
GUI to select a file if it exists else create a new one
Hi Sunny, [fileName,pathName,index] = uiputfile({'*.xlsx';'*.xls'},'Please Select a file Location','My Default File Name.xlsx'...

alrededor de 5 años hace | 0

| aceptada

Respondida
Sir, I need to convert .dat file into .mat file
Hi, Check mdfimport function in FEX below link: mdfimport

alrededor de 5 años hace | 0

Respondida
data.table equivalent in matlab
Hello, Have you ever checked table and datastore? You can look at below links and their relevant properties and methods in doc...

alrededor de 5 años hace | 0

| aceptada

Respondida
How to install a .mltbx without opening Licence Agreement Screen?
I found a way, https://www.mathworks.com/help/matlab/ref/matlab.addons.toolbox.installtoolbox.html newAddon = matlab.addons....

alrededor de 5 años hace | 0

| aceptada

Respondida
How to delete the columns of a cell array if the last elements of the columns are zero
Hi, You can use this: myArray = {'A','B','C','D'; 2 2 4 0;1 1 5 2; 1 1 6 0; 1 1 0 1}; newArray = myArray(:,~([myArray{end,:...

alrededor de 5 años hace | 0

Pregunta


How to install a .mltbx without opening Licence Agreement Screen?
Hello dear community! I want to install GUI Layout Toolbox inside a function with only code. I am currently using 2018a and ea...

alrededor de 5 años hace | 1 respuesta | 0

1

respuesta

Respondida
can text next to input be different in each loop?
Hi, Input can get prompt string as an input already. You can use both: promptString = 'Enter Height'; for i = 1:5 x=in...

alrededor de 5 años hace | 1

| aceptada

Respondida
How can I generate an array of binary data of this form?
Hi Luqman, Please see the code below and read the comments: N = 6; permutatedArray = [ones(1,N/2),zeros(1,N/2)]; % this cre...

alrededor de 5 años hace | 0

Respondida
How to append number to array
Assuming that your function's outputs are 1x1 double, you can use below: S0=30; K=32; r=0.03; sigma=0.2; T=1; M=10; % er...

alrededor de 5 años hace | 0

| aceptada

Respondida
Making plots look beautiful
Hello Hari, I have just created a dummy data and plot them for you. You must check the line properties in documentation here t...

alrededor de 5 años hace | 2

| aceptada

Respondida
Index exceeds matrix dimensions
You can't use simulink as a variable name. simulink(i)=simulink1; % simulink is already a built-in function which starts simul...

alrededor de 5 años hace | 0

Respondida
How to fill a 1024 point array with two cycles of a cosine wave?
You can use linspace. Example: xData = linspace(0,4*pi,1024); yData = cos(xData); figure; plot(xData,yData);

alrededor de 5 años hace | 0

| aceptada

Respondida
Change categorical array categories in table for use in uitable dropdown
Hi Vik, I don't know why it didn't work, I have tried what you did above. I tried exact the same thing with categorical variabl...

alrededor de 5 años hace | 1

Respondida
access data in structure?
You are almost there. Try this: H0=struct('h',[0,0],'Q_centroid',[0,0],'Q_action',[.5,.51,.5,.51],'Q_table',[0]); H1=struct('...

alrededor de 5 años hace | 0

| aceptada

Cargar más