Answered
Read and sort data in a text file
You can use the readtable function. It will autodetect the variable types. tab = readtable('myfile.txt'); tab = sortrows(tab,{...

5 years ago | 0

| accepted

Answered
MATLAB Runtime licensing for a commercial product
From Matlab Website https://www.mathworks.com/products/compiler.html#encrypted-royalty-free https://www.mathworks.com/company/...

5 years ago | 0

Answered
Compiling large nested folder structure
You need to add the folder and sub folders to the path before compiling. Example add folder b and all its sub folders to the pa...

5 years ago | 0

Answered
How to get rid of two consecutive double quotes from my string?
if true % remove double quotes somestr = regexprep(somestr,'"',''); Numarray = char(somestr) - '0'; end

5 years ago | 0

Answered
Image resizing using augmentedImageDatastore
The last argument to split each label is not spelled correctly. It's splitEachLabel(___,'randomized').

5 years ago | 0

Answered
how to read imge from my subfolder ?
You need to include the folder name as well. % currentfilename = fullfile(d(i).folder,d(i).name); image{i} = imread(fullfile(d...

5 years ago | 1

Answered
How to use values from .mat file (nested struct) dependent to the variable name of value
There are quite a few options. One option is to use the structfun to apply a function to each field of the function as follows. ...

5 years ago | 0

| accepted

Answered
Change table of structs into columns of data in a table
Based on your example data this will work. All structs must have the exact same fields, otherwise this will fail flattened = st...

5 years ago | 0

| accepted

Answered
read each line of a text file and storage each into an array
The easiest way would be to read the entire file, then use string functions to extract what you need. The following should woul...

5 years ago | 0

Answered
Help with a for loop
Since you have an array you can use array2table function. In your for loop change ch to a cell array. ch{i} = h.invoke('Ge...

5 years ago | 1

| accepted

Answered
run mp4 in app designer
If you have MATLAB R2019b and later you can easily use uihtml to play any video using html. https://www.mathworks.com/help/ma...

5 years ago | 0

Answered
What is the the good practice for exchanging data in App Designer?
No public / private properties are not the same as global variables. They are only available in the non static functions define...

5 years ago | 0

| accepted

Answered
Explanation Alexnet in deep learning ?
This code is for transfer learning. That is when you already have a pretrained model that you wish to use for another purpose. T...

5 years ago | 0

| accepted

Answered
how to press button continuously?
If you want to update the figure rather then create new figures, you need to explicitly update the CData property of existing im...

5 years ago | 0

Answered
Multi-input imagedatastore
You can save the labels as a text file and then create a tabularTextDatastore to read them back. Something like this could work...

5 years ago | 0

Answered
Invalid training data. Responses must be nonempty when using networkTrain on CNN
If you have image processing toolbox, you may perhaps use denoisingImageDatastore https://www.mathworks.com/help/releases/R2020...

5 years ago | 1

| accepted

Answered
how can i feed the pre-recorded video to the following code instead of live video(from webcam)/ or how can i save the live video in a 'disk'
You can use the VideoReader to read a video file. v = VideoReader('xylophone.mp4'); while hasFrame(v) frame = readFrame...

5 years ago | 0

Answered
How to load a set of images which have the same name in different subfolders for further image processing
You can use the dir function to get the list of all the files in the folder and subfolder listofallpngfiles = dir(fullfile(pwd,...

5 years ago | 0

Answered
How to dynamically define limits for multiple plots from user input in app designer?
Instead of having a while loop you can simply have numeric edit fields with callbacks and an ok button with callback. Once the ...

5 years ago | 0

| accepted

Answered
State button callback- break while loop?
You can try something like this. app.STOPButton.Enable = true; app.STOPButton.Value = 0; while(somecondition) % do somet...

5 years ago | 1

Answered
How to handle stiffness parameter using Try and Catch?
You can perhaps try a for loop over the various parameters. % assuming you have 5 parameters needed for your function % and yo...

5 years ago | 0

| accepted

Answered
How to save matrix using fprintf in .txt file?
You can try using readmatrix and vertcat functions. I am assuming the default options would work in your case. files = {'f1.t...

5 years ago | 0

Answered
remove rows with empty variables within timetable
You can use the rmmissing function. It will remove all rows where any of the columns are missing. b = rmmissing(a);

5 years ago | 0

| accepted

Answered
How can I plot four columns of data from a text file?
Minimal code is as follows. f = 'somefile.txt'; fid = fopen(f,'r'); out = textscan(fid,'%f %f %f %f'); out = horzcat(out{:})...

5 years ago | 0

| accepted

Answered
Image rotation along the frame
You have to crop the image to get rid of the black border. If you want to get the same size as the input image the you have to r...

5 years ago | 0

Answered
How can I run Python Functions in MATLAB?
I keep getting errors when using InProcess mode. However managed to succesfully load the modules using OutOfProcess mode, with p...

5 years ago | 0

Answered
How to group the rows of a matrix based on a grouping variable ?
Assuming that the folder depth is the same. you can use get the subfolder name like this. s = ["Users\MyUserName\Desktop\MyProj...

5 years ago | 0

| accepted

Answered
How to redirect standard input and standard output using .Net System.Diagnostics.Process
You can try this. You may have to choose the option on how to decide when xfoil.exe has finished reading. process = System.Diag...

5 years ago | 2

| accepted

Answered
Add a new item to existing list and save it and Dot indexing is not supported for variables of this type
You need to load and save Items from a .mat file if you wish your changes to be persisted across runs. Otherwise the items will ...

5 years ago | 0

Answered
How to load my pre trained model and use it to predict an image
The variable gregnet can be saved and loaded from a .mat file like any other variables. save('mynet.mat','gregnet1'); file =...

5 years ago | 2

Load more