답변 있음
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 ...

6년 초과 전 | 2

| 수락됨

답변 있음
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(...

6년 초과 전 | 1

| 수락됨

답변 있음
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...

6년 초과 전 | 0

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

6년 초과 전 | 1

| 수락됨

답변 있음
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...

6년 초과 전 | 0

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

6년 초과 전 | 0

| 수락됨

답변 있음
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...

6년 초과 전 | 0

| 수락됨

답변 있음
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....

6년 초과 전 | 3

답변 있음
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); ...

6년 초과 전 | 0

답변 있음
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...

6년 초과 전 | 0

| 수락됨

답변 있음
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]...

6년 초과 전 | 1

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

6년 초과 전 | 0

| 수락됨

답변 있음
"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...

6년 초과 전 | 1

| 수락됨

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

6년 초과 전 | 0

| 수락됨

답변 있음
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...

6년 초과 전 | 0

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

6년 초과 전 | 2

| 수락됨

답변 있음
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...

6년 초과 전 | 0

| 수락됨

답변 있음
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...

6년 초과 전 | 0

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

6년 초과 전 | 0

| 수락됨

답변 있음
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

6년 초과 전 | 2

| 수락됨

답변 있음
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...

6년 초과 전 | 0

| 수락됨

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

6년 초과 전 | 1

답변 있음
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...

6년 초과 전 | 0

| 수락됨

답변 있음
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...

6년 초과 전 | 0

답변 있음
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 ...

6년 초과 전 | 0

답변 있음
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...

6년 초과 전 | 0

| 수락됨

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

6년 초과 전 | 0

답변 있음
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 ...

6년 초과 전 | 1

| 수락됨

답변 있음
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 ...

6년 초과 전 | 0

답변 있음
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...

6년 초과 전 | 0

더 보기