Beantwortet
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; ...

mehr als 4 Jahre vor | 0

Beantwortet
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}...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

mehr als 4 Jahre vor | 0

Beantwortet
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 ...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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....

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

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

mehr als 4 Jahre vor | 0

| akzeptiert

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

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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')...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 5 Jahre vor | 0

Beantwortet
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...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
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 =...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 5 Jahre vor | 0

Beantwortet
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...

fast 5 Jahre vor | 0

Beantwortet
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...

fast 5 Jahre vor | 1

| akzeptiert

Beantwortet
"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...

fast 5 Jahre vor | 1

| akzeptiert

Beantwortet
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 ...

fast 5 Jahre vor | 1

| akzeptiert

Beantwortet
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');...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 5 Jahre vor | 0

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

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
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_...

fast 5 Jahre vor | 1

Beantwortet
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...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
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

fast 5 Jahre vor | 0

| akzeptiert

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

fast 5 Jahre vor | 2

| akzeptiert

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

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 5 Jahre vor | 0

Mehr laden