Answered
Как получить скачать 32 bit версию Matlab ?
Hi German Kovalenko, The last MATLAB release with a 32-bit version support was for R2015b. From R2016a onwards all the MATLA...

3 years ago | 0

Answered
How can I run a jupyter notebook script from matlab?
Hi Rachel Dawn, You can convert the kmeans.ipynb file to a python script by either of the followign ways: Open kmeans.ipynb ->...

3 years ago | 0

Answered
매트랩 2020b 버전을 노트북에 설치하려고할때 무선인터넷이 연결되지 않을 경우 설치하는 방법은요?
Hi tenna An, A similar question has been answered in the community here.

3 years ago | 0

Answered
Error using xlsread with MatLabR2020b
Hi Filippo Bocchi, As Matt Derosier had suggested , avoid using the xlsread function. On achieving what you wanted with readt...

3 years ago | 0

Answered
Combination of choices - recursive function
Hi Artur Wszolek, I'm assuming negative values are not allowed. The below is a sample code which can help in achieving what you...

3 years ago | 1

Answered
Converting a variable sized cell array to a matrix
Hi Jaykumar Vaidya, As the cyclist has suggested, its not entirely clear what the elements are. Inorder to convert a cell to m...

3 years ago | 0

| accepted

Answered
How do I solve this issue : information needed to identify your computer is missing
Hi sangare Mamoudou, A similar question has already answered in the community here and here

3 years ago | 0

Answered
How to use machine learning model in appdesigner?
Hi ChanHo Lee, As Mario Malic suggested, it would be better to have the ML part of your code working first. The next thing you...

3 years ago | 0

Answered
How can I remove commas in columns number in the command line?
Hi Alberto Lutman, I'm afraid it can't be changed and its dependent on the Operating System. If you would want to explore other...

3 years ago | 1

| accepted

Answered
How can I change my code so that more inputs can be added?
Hi Alexandre d'Orgeval, Initially you can define an empty matrix r_f and then you can use horzcat() function to add r_f1 at the...

3 years ago | 0

Answered
How to take input from Edit Text Field and save the data with Push Button
Hi Keynan Hart, For accessing database's within Matlab you will need Database Toolbox . In the startUp function of the app...

3 years ago | 0

| accepted

Answered
Finding a matrix to shift an image
Hi Michelle, If you want to just shift the image horizontally, you can use the function imtranslate() as shown: im1 = imread(...

3 years ago | 1

Answered
Parallel computing toolbox setup
Hi , Can you try out a simpler example and check, as shown below: tic n = 1000; A = 500; a = zeros(1,n); %Without parfor ...

3 years ago | 0

Answered
Simulink 2019b: where to find the "close all/other tabs command"
Hi Arno Daniel, This feature was removed in Simulink R2019b onwards and may be introduced in future versions in a more convenie...

3 years ago | 0

| accepted

Answered
When I try to load a keras model using importKerasNetwork I get the following error (R2020A)
Hi Alexander Berardino, In the below line: net=importKerasNetwork(sprintf('%s%s', modelpath,networkname)); Between the '%s' a...

3 years ago | 0

Answered
How to i make it display correct for the right answer?
Hi Kalpha.mc, In the first line of your code snippet, you are defining a boolean variable 'diagonal' and set it to true. But i...

3 years ago | 0

Answered
Transfer Array into another array
Hi Jethro Perez, Looks like James Tursa has resolved your query. You can use built-in functions like horzcat and vertcat to ach...

3 years ago | 0

Answered
How to prevent simulink model windows to maximize automatically?
Hi Alejandra Ríos, You mentioned that you are using code and a simulink model and in every execution opens the simulink model. ...

3 years ago | 0

| accepted

Answered
How do I generate a C code from a Simulink model directly from command line?
Hi Andre Vidigal, The MATLAB command to generate C code from a Simulink Model is "rtwbuild()". You can check the documentation...

3 years ago | 0

| accepted

Answered
How can I split datasets
Hi Baraah Alsangari, As you intend to use "gscatter()" function which takes categorical columns as one of the input argument, y...

3 years ago | 0

| accepted

Answered
Vector manipulation for randomized data
Hi Elijah L, You are right in suggesting S. Walter's code would only update for the first occurance of 1. In the below code, I ...

3 years ago | 0

Answered
How can I get the userID from the web application browser
Hi, The following links could help: link1, link2, link3. You can check the documentation here.

3 years ago | 0

Answered
Convering a table with multiple y values for a single x value
Hi Thilakasekaram Varjith, This is my approach: Find unique values in the x-axis For each of the unique value extract corre...

3 years ago | 0

Answered
change size[ 3 1] to [3 25]
Hi Haiwen Sun, If we pre-allocate funcOut matrix of size 3 x 25, we can get the output you are trying to achieve. This is happe...

3 years ago | 0

Answered
String을 변수 이름으로 변경 하기
Hi, You are accessing "Inozx" variable from the struct "handles" even though you have not assigned it to the struct. I have co...

3 years ago | 1

Answered
ubuntu無法安裝
Hi, You will need to mount the .iso file first and then run the 'install' executable. The procedure for installing from the .i...

3 years ago | 0

Answered
Correlating values from a table using a for loop
Hi Jacqueline Chrabot, The following code will help you in achieving what you want: %Read 'Data.csv' as a table T =readtable(...

3 years ago | 0

Answered
Error with timer TimerFcn
Hi Happy PhD, The reason for the i value of the "timer-i" keeps changing is because everytime you run the app, you are creating...

3 years ago | 0

Answered
How to speed of execution in my code?
Hi, I explained how to speed up your code here.(this is another question you had asked on how to plot for end_time2 on the same...

3 years ago | 0

Answered
How to plot two data set with two different durations in the same plot?
Hi, In the "StackOverflowEx.xlsx" file, there are 5 columns: hp_id st_time end_time1 end_time2 PevReal Hence your line 1,...

3 years ago | 1

| accepted

Load more