Answered
When I use “regressionLayer”, how to replace the default “lossfunction” of matlab, namely MSE
You can try creating your own custom regression layer. An example can be found here https://www.mathworks.com/help/deeplearnin...

5 years ago | 1

| accepted

Answered
How to sort a struct
You can try like this. % a = somestruct; [~,index] = sortrows([a.Var3].'); a = a(index);

5 years ago | 0

| accepted

Answered
Can anyone explain how to do concatenation of flatten outputs from CNN with the outputs from DNN?
Try using the concatenation Layer, introduced since R2019a. https://www.mathworks.com/help/releases/R2020a/deeplearning/ref/nne...

5 years ago | 0

Answered
Java Static Libraries defined in javaclasspath.txt are not loaded in the parallel pool
After some search on the forum. It seems that if javaclasspath.txt is located in the "preference directory" it will be loaded co...

5 years ago | 0

| accepted

Question


Java Static Libraries defined in javaclasspath.txt are not loaded in the parallel pool
I have placed the file javaclasspath.txt file in my Matlab working folder. User\Documents\MATLAB\javaclasspath.txt This loads t...

5 years ago | 1 answer | 0

1

answer

Answered
Plotting graph from table using app designer
First in your app in the design view, you will need to add an UIAxes to the app. Thereafter you can plot on it. Add a callback ...

5 years ago | 0

| accepted

Answered
Text reader to numbers
Assuming the pattern shown in your picture. Ignore line 1, line 2& line 3 form a repeating pattern. I would suggest read the en...

5 years ago | 0

Answered
Changing data headers in a table (looped)
What is discouraged is dynamic evaluation of a commands which is a security risk. (Risk of code injection) Dynamic referencing ...

5 years ago | 0

| accepted

Answered
Is it possible to accelerate the speed of saving data into files with parallel way?
Is there a reason why you want to use a for loop to write this ? You can write the entire matrix to file in one go using writem...

5 years ago | 0

Answered
select/save part of database into another database
I assume you are able to read the excel directly using the readtable function. % excelfilepath = 'C:\...'; % DBA = readtable(e...

5 years ago | 0

| accepted

Answered
Train images using DNN using Label as CSV file
From your question it seems like you want to do transfer learning. Matlab documentation provide a detailed guide on how to do tr...

5 years ago | 0

Answered
Find string corresponding to another string within a text file
Station name is a char / string. however you are using str2double. This will ofcourse give you a nan output. You can remove the...

5 years ago | 1

| accepted

Answered
calling python function from Matlab
Moved to answer According to the docs, a missing string value will translate to none in python. https://www.mathworks.com/help...

5 years ago | 1

| accepted

Answered
Changing the format of mat file
If you have a 3D matrix, you can use the function permute to move the dimensions. edc = rand([3 4 5]); cde = permute(edc,[3 2 ...

5 years ago | 0

| accepted

Answered
APP DESIGNER. How can I use a variable generated by one function in another funcion?
You need to create an app property dicom_files to store the values in. Change to code view, click the property button, click p...

5 years ago | 1

| accepted

Answered
Error when using convolution2dLayer between connected maxPooling2dLayer and maxUnpooling2dLayer
You convolution layer is changing the number of channels in the output after the max pooling. This causes the input size mismat...

5 years ago | 0

| accepted

Answered
3D plot from tables in timeline
Based on my understanding each file 'data1.txt' is from one particular time Different number of rows means, you are missing cer...

5 years ago | 0

| accepted

Answered
Filling out an empty column in an existing table based on conditions matching other columns
% t1 = yourtable logic1 = startsWith(t1.column3varname,'fast') & startsWith(t1.column4varname,{'boat' 'car' 'airplane'}); logi...

5 years ago | 0

| accepted

Answered
How do I convert this for loop in to while loop with same sequence of number.
x = 0; while x <= 50 disp(x); x = x + 2; end

5 years ago | 0

Answered
Why the user was asked to install Matlab runtime for my standalone application?
You may have distributed the compiled exe rather then the installer. When compiling an App three directories are generated. for...

5 years ago | 0

| accepted

Answered
how to do normalization of a matrix
You can use the function normalize and specify which dimension you want to normalize. From the documentation "N = normalize(A...

5 years ago | 0

| accepted

Answered
How to rename multiple files in a folder with variable names depending on their names in another folder?
You dont need the *. you can do as follows. match = regexp(oldnames,'3\d{3}','match');

5 years ago | 0

| accepted

Answered
How to turn on the grids of axes upon start?
Use the function grid to turn off the grid. You can do this in the startup function as Rik mentioned grid(handles.axes1,'off');...

5 years ago | 0

Answered
Fastest way to replace multipe substrings with a single new string?
After some experimentations I think that if you tokenize your sentences, you can use a hashmap to lookup the words to replace. ...

5 years ago | 0

Answered
Referring to specific input in loop
If you want to have variable number of arguments, perhaps you want to use varargin instead in your function signature. function...

5 years ago | 0

| accepted

Answered
Example of MatLab code that can read XGMML (.gr.gz) extension file?
This file appears to be a text file which gzip compressed. You can extract the file with function gunzip and then perhaps load ...

5 years ago | 0

| accepted

Answered
How to alternatively cut a signal into segments of different sizes
You can use reshape to extract the signals % Incorrect : prb2 = reshape(prb,14*2048,2,[]); % Correction prb2 = reshape(prb,14...

5 years ago | 0

| accepted

Answered
How to generate 500 random string keys in matlab?
You can use the randi function to generate integers corresponding to the ascii values you want to allow in your random string. ...

5 years ago | 2

Answered
How to make an Edit Text Field box in App Designer to recognize a vector input
The text field are designed to take in string inputs. It will return you whatever data is entered as string. If you want to int...

5 years ago | 0

| accepted

Answered
calling a c function with calllib doesn't work with pointers
It will not return you 3 different values, it will return you pointer to an array containing 3 double values. Also you need to ...

5 years ago | 1

| accepted

Load more