Answered
Converting rough strings to exact strings
S = [... "textIdontCareAbout_Phenolic32_Group5_textIdontCareAbout" "textIdontCareAbout_P1_textIdontCareAbout" "te...

3 years ago | 0

| accepted

Answered
Replacing Arrays and Matrices
"Is it a good idea to overwrite an array with matrix?" There is no difference: MATLAB does not have a "matrix" class: all numer...

3 years ago | 1

Answered
How to make a m*2 matrix into n number of 2x2 matrices
A = rand(208,2); C = mat2cell(A,2*ones(104,1),2)

3 years ago | 0

| accepted

Answered
Cell array with space between the ' and }
"the only strange thing about the cell array is that the {'15.0' } has a space after the ' and before the }." It is not strang...

3 years ago | 0

Answered
How to rearrange columns in a MATRIX?
x = [1,2,4,4,5,6; 3,4,6,6,7,8; 3,4,5,6,6,7; 4,5,6,8,7,8] y = reshape(permute(reshape(x,size(x,1),2,[]),[1,3,2]),[],2)

3 years ago | 1

Answered
How to read and use folder name from Address Path?
SelMatPathOld = 'D:\ninn\2_resimResult_0628\20220330'; [~,sub] = fileparts(SelMatPathOld) old = fullfile('.',"ComapareSummary"...

3 years ago | 0

| accepted

Answered
Using a loop to load multiple mat files from measurement into the workspace
https://www.mathworks.com/help/matlab/import_export/process-a-sequence-of-files.html P = '.'; % absolute or relative path to wh...

3 years ago | 1

Answered
How do I load multiple .mat files and save them as variables?
https://www.mathworks.com/help/matlab/import_export/process-a-sequence-of-files.html P = '.'; % absolute or relative path to wh...

3 years ago | 0

Answered
To extract the last sub string from strings
Avoid slow CELLFUN, STR2NUM, REGEXP, etc. One SSCANF call is probably the most efficient approach by far, as well as being very...

3 years ago | 2

Answered
How to remove space after using num2str?
V = [1798.4;1798.6;1798.8;1799;1799.2;1799.4;1799.6;1799.8] S = string(V)

3 years ago | 0

| accepted

Answered
Overwrite table data with 'Yes' or 'No' according to the logical index
Simpler: S = load('sample1.mat'); T = S.sampleinput X = strcmpi(T.TEST_ITEM1,'TV'); T.TEST_LOAD1(:) = {'No'}; T.TEST_LOAD1(...

3 years ago | 0

Answered
how to query string exactly in matlab
C = readcell('TEST.xlsx') X = matches(C,'M2') or X = strcmp(C,'M2') TIP for the future: scroll to the bottom of the CONTAINS...

3 years ago | 0

| accepted

Answered
How to index the matrix only the first dimension of the rest
This will be quite efficient because none of the data in memory is moved around, only the array header is accessed. It also wor...

3 years ago | 1

Answered
compare 1X6 cell data with Structure
It is unclear from your question, if both MatFiles structures are one and the same, or are different. Note that your approach d...

3 years ago | 0

Answered
How to print multiple Values using sprintf In matlab
Rather than hard-coding a fixed number of values to print, I recommend writing more robust code using STRING &JOIN or COMPOSE or...

3 years ago | 0

| accepted

Answered
How to sort the files obtained by ImageDatastore?
A very neat and simple approach (from an answer by Pranay Koppula here) is to apply NATSORTFILES() to the FILES property of the ...

3 years ago | 1

Answered
How to extract a string before a number?
The simple approach using REGEXP, without wasting time fiddling around with indices: str = 'abcd-xyzw-1.2.3.zip'; sub = regexp...

3 years ago | 0

Answered
How do I search for and assign variables within my filespace?
Once those differently-named variables are in the workspace then you are really up the creek without a paddle. Fiddling around w...

3 years ago | 0

Answered
How to separate alternate elements from an array?
A = [1,2,3,4,5,6,7,8]; X = A(1:2:end) Y = A(2:2:end)

3 years ago | 0

| accepted

Answered
Looping through different structures?
You did not tell us if those structures are all saved in one MAT file, or each separately in their own MAT files. That would cha...

3 years ago | 1

| accepted

Answered
How do i count numbers ending in 3
Simple, efficient, basic mathematics: x = [234,352,298,213,365,321,293,213]; n = nnz(mod(x,10)==3)

3 years ago | 0

Answered
search for a folder from a different directory
Using CD is slow and makes code harder to debug. The efficient approach is to use absolute/relative filenames. The best approac...

3 years ago | 0

Answered
How to remove additional comma from string?
tdat = ["t1,t2,t3"; "d2,d3,d4,"] tdat = regexprep(tdat,',+$','')

3 years ago | 0

| accepted

Answered
Weird-Confusing mistake in subtraction result!!!!
"Weird-Confusing mistake" Not weird, not a mistake, but perhaps confusing to the uninitiated. "please help me with this proble...

3 years ago | 1

| accepted

Answered
remove unwanted columns and raws
X1(1,:) = [] X1(:,1) = []

3 years ago | 0

Answered
Identify duplicates in a matrix and keep the one with minimum value
Simple and efficient MATLAB approach using UNIQUE and ACCUMARRAY: A = [1500,12,1; 1500,10,2; 1500,11,3; 1500,15.61,6; 1500,17,5...

3 years ago | 1

Answered
using accumarray to combine text
T = table([1;2;2;3;4;2], ["a";"b";"c";"d";"e";"f"], 'VariableNames',{'EBID','Name'}) G = findgroups(T.EBID); F = @(s)join(s,"|...

3 years ago | 0

| accepted

Answered
Read in text values from CSV file into matrix
READCELL

3 years ago | 0

| accepted

Answered
Merge .mat file to one .mat files
Robust and efficient approach which works for any number of .mat files (unlike the verbose solution you found). Note that any du...

3 years ago | 0

| accepted

Answered
How to take average of such an array?
Z = {[1,0,2,2,1,1,3,1,1,0],[2,1,0,0,0,1,0,2,0,0];[2,2,3,3,1,3,3,2,1,0],[2,2,0,0,1,2,0,2,0,0];[2,3,3,3,2,3,4,2,1,0],[3,5,0,0,1,3...

3 years ago | 0

| accepted

Load more