Answered
How to avoid creating 1x1 struct?
b = linspace(..); e = spline(..); newStruct = struct('b',num2cell(b),'e',num2cell(e)); "I get this which serves no purpose wh...

2 years ago | 1

| accepted

Answered
How to have a code restart with a different file after finishing with a different file?
"However it combined all of the files into one output file, my new question is how to create a new txt file for each csv file th...

2 years ago | 0

| accepted

Answered
Cannot find file that exists for second variable
Your code is looking for a file literally named TIMESERIES: if ~exist('timeseries','file') whereas what you want to do is use ...

2 years ago | 0

| accepted

Answered
How to solve incosistent scientific format ?
Do not convert to text and compare text. Compare the numeric values. Best of all by comparing the absolute difference against a...

2 years ago | 1

Answered
Function with 3 input arguments
"I just know I am missing something fundamental here..." Exactly the same fundamental concept as your previous questions: defi...

2 years ago | 1

| accepted

Answered
How do I insert a substructure within an existing structure at a specific index
"What is the simplest way to do this?" With a structure array this would be easy with some indexing. It would also make accessi...

2 years ago | 0

| accepted

Answered
Confusing sprintf() behavior
"Is this a bug?" No. SPRINTF and FPRINTF apply the entire format string to the data values, repeating the entire format string...

2 years ago | 1

| accepted

Answered
concatenate multiple 'OutputFcn' options in odeset?
Define a wrapper function to call whatever functions you want. Note that the wrapper function itself will need to fulfill the r...

2 years ago | 1

| accepted

Answered
Plotting matrix data without existing x-values.
S = load('befolkning2019.mat'); M = S.befolkning2019 X = 0:size(M,1)-1; plot(X,M) legend('male','female')

2 years ago | 0

| accepted

Answered
Creating 25 x 2 matrix with each row range is 20
m = (0:20:499).' + [1,20]

2 years ago | 2

| accepted

Answered
Deleting specific repeating sequence from a column vector
"Might there be a more elegant solution?" You don't need a loop, just remove them all at once e.g.: Data = [ 0 %Pac...

2 years ago | 0

| accepted

Answered
Writing code to call functions
"I don't think I've learned how to properly call functions because I keep getting errors when trying to run function." The prob...

2 years ago | 1

| accepted

Answered
How to calculate and display electricity used in a month using fprintf?
Note that the assignment does not require that you also print the number of kWH, only the charge is required: n = str2double(in...

2 years ago | 0

| accepted

Answered
I just want to run my script within a certain time periodically. That's it all ....
Use https://www.mathworks.com/help/matlab/ref/timer.startat.html This is the function that lets you specify an absolute time ...

2 years ago | 1

| accepted

Answered
Why is my table being saved in a wrong way in a CSV file?
"Why is my table being saved in a wrong way in a CSV file?" Why do you think that MATLAB is doing something wrong? "but when I...

2 years ago | 0

Answered
Split File paths by '\' but file paths have varying subfolders and thus lengths
Your code is very complex. You can simplify it by letting DIR recursively parse the folder structure. Lets try it here: mkdir ...

2 years ago | 0

| accepted

Answered
How to create struct of cell arrays
"I was wondering if this is the most "MATLABic" way of doing that" Yes. "...and why the following does not work" Because by d...

2 years ago | 0

| accepted

Answered
cheatsheet for dealing with structures?
"im trying to get all timestamps "timestamp" (for finding duplicate fields) of sub stucture "trainLocations" from every first ce...

2 years ago | 0

| accepted

Answered
importing multiple excel workbooks with multiple sheets into a cell array.
Based on my comment to your previous question: P = 'D:/foo/bar'; % absolute or relative path to the parent directory S = dir(f...

2 years ago | 0

| accepted

Answered
How to get specified data in table
Where T is your table: idx = strcmpi(T.OutputCase,'Pushover-x'); out = T(idx,{'StepNum','GlobalFX','GlobalFZ'}) https://www.m...

2 years ago | 0

| accepted

Answered
What is the fastest way to do repeated element wise matrix multiplication?
Reduce the number of operations inside the loop by replacing TIMES and SUM with MTIMES (of course adjusting the matrix/vector or...

2 years ago | 0

| accepted

Answered
Dealing data with text and numerical in .txt file
T = readtable('data.txt', 'Delimiter',{' ',':',','}, 'MultipleDelimsAsOne',true)

2 years ago | 0

Answered
Struct field name with space or special character
"Is there a way to have space in structure field names?" No.

2 years ago | 2

Answered
Editing csv data and convert it into a table
Lets fix the file so that it is formatted as a proper CSV file. Then importing it is trivial. S = readlines('EnergyLIS.csv') % ...

2 years ago | 2

Answered
Convert double to datetime when importing .csv
T = readtable('Trace.csv', 'Delimiter',';', 'VariableNamingRule','preserve') P = wildcardPattern + "(X)"; F = @(n) datetime(n,...

2 years ago | 0

| accepted

Answered
how to automate this manual code containing if else conditons?
S = [1 1 1 1 2 2 2 2 2 2]; V{1} = [20 10 40 50 40 30 20 10 20 30]; V{2} = [10 20 30 20 10 30 20 40 20 30]; M = vertcat(V{:});...

2 years ago | 1

| accepted

Answered
Creating a colorbar in Matlab
"Is this colorbar automatic colors? As in Matlab picks its default colours?" Yes. The default colormap is described here: http...

2 years ago | 0

| accepted

Answered
Array indices must be positive integers or logical values. Error
x1= -2:0.01:2; % decimal comma -> point f1 = x1.^2-1; f2 = sin(x1); h1 = plot(x1,f1,'b',x1,f2,'r') % removed superfluous inde...

2 years ago | 0

| accepted

Answered
using "&" with logical array
"why is not correct using &?" Who says that it is not "correct" ? What you show is not a code error (underlined in red), it is ...

2 years ago | 0

| accepted

Answered
How do I control the format of the date stamp on a plot axis with datetime values?
That is named the secondary label and has some rather rudimentary controls, e.g.: https://www.mathworks.com/help/matlab/ref/xse...

2 years ago | 0

| accepted

Load more