Answered
How to read/extract a part of a cell array from a .mat file?
If you have mat-file Version 7.3, try this but I've never tried it personally, exampleObject = matfile('filename.mat'); A ...

8 years ago | 2

| accepted

Answered
Using values in an array to represent characters?
Use datetime to generate a vector of datetimes and then use |month| property, dt = datetime([2017*ones(12,1) (1:12).' ones(...

8 years ago | 1

| accepted

Answered
While loop and previous values
I suppose |y| is a constant 3x1 vector and only |x| is changing in this while loop. So simply assign the intial values of |x| to...

8 years ago | 0

Answered
how to arrenge timeseries data ?
use sort? [~,indx] = sort(data(:,1)); sortedData = data(indx,:);

8 years ago | 1

| accepted

Answered
Global variable not working in the MATLAB workspace
why do you want to use Global variables in the first place? _...I have never seen MATLAB code where globals were the right th...

8 years ago | 0

Answered
Subscripted assignment dimension mismatch
You're trying to assign a 3D matrix into a 2D one. Try, masking(:,:,:,1) = indx;

8 years ago | 0

| accepted

Answered
How can I re-write this code to fit any size matrix? Help!
You're complicating a simple one line calculation way too much. Here's how to do it effectively, sectionGrades(:,end+1) = su...

8 years ago | 0

| accepted

Answered
Showing data values on markers in figure
use |text| <https://de.mathworks.com/help/matlab/ref/text.html> something like for t = 1:numel(x1) text(x1(t)+0....

8 years ago | 3

Answered
How to increase elements of a vector without changing its plot?
If you have X = rand(57,1); %57 elements if you want to have 3000 elements now, X(end+1:end+3000,1) = rand(3000,1); ...

8 years ago | 0

Answered
How can I interpolate the 2-dimensional data
something like this maybe, a = [81 83 85 87 90 84 0 88 90 92 83 85 86 0 91 86 87 88 92 94 88 89 90 96...

8 years ago | 0

| accepted

Answered
How can I add additional tics to the x-axis scale in my graph?
If you're using older version of matlab, set(gca,'xtick',0:20:700); and to draw vertical lines, line([x1 x2],[y1 y2]...

8 years ago | 1

Answered
Latest Date Entry Record
use sortrows, <https://de.mathworks.com/help/matlab/ref/sortrows.html#bt8bz9j-2> sortedTable = sortrows(yourTable,'timest...

8 years ago | 0

| accepted

Answered
"For" loop to test every value and count the points that satisfy the statement
you need to read about if statements <https://de.mathworks.com/help/matlab/ref/if.html> and also indexing, <https://de...

8 years ago | 1

| accepted

Answered
How to delete rows in a table where table variable equals some integer?
if |T| is your table, T(T.Variable == 1,:) = [];

8 years ago | 0

| accepted

Answered
Fail to create a new variable in the Timetable
if |Data| is your timetable, you cannot just say Data.Rate = Data{datestr(n),3} or Data.Rate = 3.686 Pre-allocate the new...

8 years ago | 0

Answered
Check elements in cell
No need for a loop, just use find and strcmp, indx= find(strcmp(NAME_T, 'Del Col_2010'))

8 years ago | 2

| accepted

Answered
Average of column for values of other columns
data = [240 1 0 1 18 240 1 0 1 26 240 6 7 3 23 240 28 22...

8 years ago | 0

| accepted

Answered
Is it possible to use xls functions whitout excel installed?
The documentation for |xlswrite| says, _If your computer does not have Excel for Windows®, or if the COM server (part of th...

8 years ago | 0

Answered
Grid on in subplot
You may want to use |linkprop|, <https://www.mathworks.com/help/matlab/ref/linkprop.html> hlink = linkprop([ax1 ax2], {'G...

8 years ago | 0

| accepted

Answered
How to recieve only the negative or the positive of an integer?
One way is, your_integer = 3; number = randsample([-1 1],1)*your_integer

8 years ago | 2

| accepted

Answered
I am using matlab file in which i am able to create the new folder according to the time, but the thing is i want to copy the files from a specific file to this newly made folder according to time.
use |movefile| or |copyfile| <https://www.mathworks.com/help/matlab/ref/movefile.html> <https://www.mathworks.com/help/mat...

8 years ago | 0

| accepted

Answered
how to add zeros around a matrix?
newA = zeros(size(A)+2); newA(2:end-1,2:end-1)=A

8 years ago | 1

Answered
How to make a loop if a condition is not met
You have got it almost right but you have to have the while loop on top to ask the user untill non zero values are received. Ins...

8 years ago | 0

| accepted

Answered
Extract last column in a 4x4x4x4 matrix
I do not understand the connection between your title and the content of your question. Anyway if you want to extract the last c...

8 years ago | 0

Answered
Print message about which loop has been entered, after finishing for loop
set counters and use it with disp counterA = 0; counterB = 0; counterNone = 0; for k=1:10 %code if (condition ...

8 years ago | 0

Answered
how to use the loop for?
you have got it almost right, you just need to put them inside the loop. I'll give you some tips to work further. * first ass...

8 years ago | 0

| accepted

Answered
how can i obtain this ?
Simpler with just one line, bsxfun(@plus,1:9,(10:10:90).')

8 years ago | 0

Answered
How to force the colorbar to adopt n values?
Always use a handle, <https://www.mathworks.com/help/matlab/learn_matlab/understanding-handle-graphics-objects.html> When ...

8 years ago | 1

| accepted

Answered
How can I change the color of all similar blocks in a complex simulink system programmatically?
use findblocks to get all blocks of your model, <https://www.mathworks.com/help/simulink/slref/find_system.html> and then ...

8 years ago | 0

Answered
Load csv with date-time column and other colums with numbers and changing date-time to number.
If you have 2013b or later use readtable, <https://www.mathworks.com/help/matlab/ref/readtable.html> data = readtable('fi...

8 years ago | 0

Load more