Answered
grouping files together by name
Following code assumes all your png files are inside the working directory and the filename format are xxxx.00.000.png. clear; ...

4 years ago | 0

Answered
I want to make a loop that keeps replacing its own 'S's with SLSRSLS any N number of times
N = 3; k{1} = {'S'}; for r = 1:N k{r+1} = strrep(k{r},{'S'},{'SLSRSLS'}) end Results are k{1}, k{2}, k{3} & k{4}. k{4}...

4 years ago | 0

| accepted

Answered
Draw circle and ellipse in matrix
Modify the third line: nx=100; ny=90; domain=ones(ny,nx); [cols rows]=meshgrid(1:nx,1:ny); centerX = 40; centerY = 40 ...

4 years ago | 0

Answered
How to save vectors of different lengths to excel file
Since you are writing the data in a column, so you just need to take the transpose as follows. Noticed that 'velocities' has 8 ...

4 years ago | 0

| accepted

Answered
how can a make a loop for a double value in Matlab?
I think it should put into a cell array: EI = cell(1,length(T1.ID)); % Cell array for i = 1:length(T1....

4 years ago | 0

| accepted

Answered
How can I update plot title using set function?
You may modify your code based on the following if this is what you want. i = 0; while i < 5 subplot(2,3,i+1) plot(1...

4 years ago | 0

| accepted

Answered
files managing (copy, move and write)
In your attached file, there is already a file 'p' inside folder '0.1' and I need to remove this file before running the followi...

4 years ago | 0

| accepted

Answered
How to create a stacked bar out of two separate bar charts (Datasets)?
You may try the following code, but noticed that the XTick is not consistent with your data since there are additional dummy dat...

4 years ago | 0

| accepted

Answered
comparing column vectors finding maxima element wise
No a single command.....not sure you accept or not. b.*(b>a)+a.*(a>=b)

4 years ago | 0

| accepted

Answered
bar graph with non numerical x-axis
Try this: bar(categorical(T_Stand_For_Sum.ADBStand),T_Stand_For_Sum.KWH)

4 years ago | 0

| accepted

Answered
Trying to get time between each start and stop & total time per day from a text file.
Noticed that row #35 and #36 are both starting time, hence I remove row #35 and try the code as follows: clear; clc; T = readt...

4 years ago | 0

| accepted

Answered
Enlarging Data Sets on Plot
Could function stackedplot satisfy your needs? No enlargement on the axis but there is a cursor to report the values on each dat...

4 years ago | 0

| accepted

Answered
how to create a sequence of time?
How about the following? It starts from 2019-01-01 00:00:00 to 2019-12-31 23:00:00 with 1 hour interval datetime('2019-01-01')...

4 years ago | 0

| accepted

Answered
Perform a calculation using data from multiple tables
Try the following code to see whether it can accommodate into your work: flight = readtable('flight data.xlsx'); distance = re...

4 years ago | 0

Answered
Remake a single file data plot to multiselect file data plot script
Slightly modify your coed as follows: (1) Select multiple files via uigetfile (2) Variable 'full' becomes a cell array now (3...

4 years ago | 0

| accepted

Answered
How to reduce the grid size of 3D matrix, (quarter of its original size)
Suppose A is your data where size is (281*321*60), try the following: [Ny,Nx,~] = size(A); idx1 = 1:4:Ny; idx2 = 1:4:Nx; B =...

4 years ago | 0

| accepted

Answered
why do i receive Not enough input arguments. Error in modelProjectile (line 7) horizontalVelocity = cosd(launchAngle)* launchVelocity.
You need to provide 2 input arguments like the following: [maxHeight, airTime, horizontalDisplacement] = modelProjectile(123,15...

4 years ago | 0

Answered
how to use setvartype on a table that is already existing
Please refer to the following example without using setvartype. (1) When you create the table, you can create the preset varia...

4 years ago | 0

Answered
printing a table made of 3 arrays
You can write the entire table to excel using the following code: However, please make sure that they are all column vectors an...

4 years ago | 1

| accepted

Answered
"Index exceeds matrix dimensions" error during performing RGB channel separation
According to your code shown above, variable I is only a file name in the beginning of the for loop. Have you do imread or some...

4 years ago | 1

| accepted

Answered
dicominfo returns an error on all dicom files other than one
Below shows some modification based on your code: (1) Variable all_list is going to contain file names only, so that the index ...

4 years ago | 1

| accepted

Answered
Legend option and numbering in boxes
Try the following: y1 = [85 83 82 87; 81 79 84 86; 82 81 89 87; 89 85 87 80; 90 91 85 87]; figure(1), b = bar(y1,'stacked');...

4 years ago | 0

| accepted

Answered
How To Extract Data from Multiple CSV Files and Run Analysis?
Read files and use readtable to retrieve the data into a cell array. The first row of the csv file contains the headers but rea...

4 years ago | 0

Answered
How can I visualized the multiple tables read from a for loop in the variable space?
Use cell array instead: variables{i} = table(dataArray);

4 years ago | 0

| accepted

Answered
How to store and reuse coefficients in a for loop
The loop of finding the coefficient can be entirely replaced by: new_coeff = permute(f_n_m,[2 3 1]); Noticed that size of new_...

4 years ago | 1

Answered
Hold on not working in for loop for imshow
It just executing too fast and not able to observe from the screen. You may add a pasue and try to see whether the output is wh...

4 years ago | 0

| accepted

Answered
Make a new a directory and save a file in a loop
use the following for saving data into a file. save(fullFileName, 'plotvars'); % plot vars is the variable I want to save

4 years ago | 0

| accepted

Answered
What does cyan marker indicate in the editor
Check this: Editor Bookmarks

4 years ago | 2

| accepted

Answered
nanmean and mean ( 'omitnan') error
use mean(cell2mat(PAR_1),'omitnan')

4 years ago | 0

| accepted

Answered
Finding X,Y coordinates after image rotation
The following code is going to check the coordinates and not replacing your code, so you may need to verify you code based on th...

4 years ago | 0

Load more