Community Profile

photo

sermet OGUTCU


N.E.U university

Last seen: 8 días hace Con actividad desde 2016

Estadísticas

  • Thankful Level 4
  • Explorer

Ver insignias

Content Feed

Ver por

Pregunta


creating a three-dimensional array from three array with different size
a= 1 x 8 %double b= 1 x 7 %double c= 1 x 6 %double How I can merge a,b,c into a single three-dimensional array with three pag...

casi 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


while loop for conditional statement
array_data=33 x 1 % double window_size=10; m_BW=0.5; var_BW=0.5; for i=1:window_size m_BW(i+1)=(i/(i+1))*m_BW(i) + (1/(...

casi 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


creating for and while loop for an array data
array_data=30 x 1 % double sliding_window=10; time_sliding_window = 1:1:10; % constant for time_sliding_window array_polyn...

casi 2 años hace | 1 respuesta | 0

1

respuesta

Respondida
creating array with specific condition
Dear Walter, thank you very much for the solution.

alrededor de 2 años hace | 0

Pregunta


creating array with specific condition
data= 689 x 1 % moving average values for the last 50 data data_average(1)= mean(data(1)); data_average(2)= mean(data(1:2));...

alrededor de 2 años hace | 2 respuestas | 0

2

respuestas

Pregunta


strcmp function using wildcards
data= 336950 x 2 table I try to find all rows in data containing "G[0-9][0-9]" such as G01, G09, G33 and etc. I tried the follo...

más de 2 años hace | 2 respuestas | 0

2

respuestas

Pregunta


converting 3D double matrix to char matrix
matrix_double_3D= 286 x 1 x 32 such as: val(:,:,1) = 1 1 . val(:,:,2) = 2 2 . I need to convert this matrix to ...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


column-wise input for string and double data using fprintf
data_string= 32×3 char array 'G01' 'G02' 'G03' . 'G32' data_numeric= 32 x 6 double fprintf('%s %.3f %.3f %.3f %.3f %.3...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


fprintf for cell array data
data_double = 32 x 7 double fprintf(fid,'%02d %.3f %.3f %.3f %.3f %.3f %.3f\n',...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


repmat usage for cellarray
data = 32 x 1 double_array=[repmat(data,1,286);]; %= 286 x 32 double Now, I need to replace data with data_string as follows: ...

más de 2 años hace | 2 respuestas | 0

2

respuestas

Pregunta


vertically aligned data using fprintf
data= 1 0 -0.828330184322257 -1.90936748180674 -0.973747768469492 1 300 -0.838221643420248 -1.73368790711073 -0.69405367102...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


fprintf for 3D matrix
matrix_2D= 32 x 7 % double fprintf(fid, '%*s\n', 15, '===== Starts with header='); fprintf(fid, '\n'); fprintf(fid,'%*s %*s %...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Creating a 3D array from 2D array
x = 121 x 27 y = 121 x 27 z = 121 x 27 I need to create a 3D array from these 2D arrays as following: xyz= 121 x 3 x 27 whe...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


adding 2D array to 3D array
I have a 3D data matrix (data_3D = 285 x 1 x 32). I need to add data_3D(:,:,1) to the beginning of data_3D. For example: data_3...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


different number of delimiters error using readtable function
I use the following code for reading text file: fileID = fopen(full_file_name); fclose(fileID); tCOD=readtable(full_file_name...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


saving matrix using fprintf in .txt file with different formatSpec
data=[2 0.232 0.333 0.421 0.111;3 0.111 0.252 0.385 0.600;4 0.500 0.620 0.100 0.210]; startingFolder='C:\Program Files\MATLAB';...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


"Unable to perform assignment because the left and right sides have a different number of elements error" using find command
reference=[1 2 3 4 5 6 8 9 10]; target=[1 2 3 4 6 7 8 9 10]; for i=1:9 index(i)=find(reference(i)==target); end Here, after...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


removing some the elements in cell array
data_array = 1×5 cell array Columns 1 through 9 {5×1 cell} {5×1 cell} {5×1 cell} {5×1 cell} {5×1 ce...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


find function using wildcards
fileID = fopen(full_file_name); header = textscan(fileID, '%[^,\n]'); fclose(fileID); end_of_header_line=find(contains(header...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


removing specific rows from char array
data=['01'; '02'; '03'; '04'; '05'; '06'; '07'; '08'; '09'; '10']; How I can remove the 1st and 5th columns from data aray?

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


splitting cell array consists of string and numeric characters
I have a cell array (n x 1). Each cell looks something like this: * 2021 3 29 0 0 0.00000000 I need to remove * from each...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


using matlab fileread function for some portion of text data
data = regexp(fileread(full_file_name),'\n','split'); end_of_header_line = find(contains(data,'* ')); I find the row number ...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


unable to make invisible for edit box in gui.
I have a GUI. In this GUI, I created an empty edit text. I need to make invisible this edit text. I appended the following code ...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


parallel processing for readtable function
ps = parallel.Settings; ps.Pool.AutoCreate = false; %do not autocreate parpool when encountering a |parfor| ps.Pool.IdleTimeou...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


using readtable function except for last five lines from text file
for i=1:2 line_check{i,:} = regexp(fileread(full_file_name(i,:)),'\n','split'); end_of_header_line(i) = find(contains(line_che...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


putting space between string and double using fprintf
fprintf(fid,'%*s %*s\n',10,' G1',10,' G2'); fprintf(fid,'%s %.1f %s %.1f\n', 'Average_1:', data_1, 'Average_2:', data_2)...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Download files from https server using username and password
url = 'https://cddis.nasa.gov/archive/gnss/products/0971/'; In this https server, I need to download "cod09710.eph.Z" file for ...

más de 2 años hace | 2 respuestas | 1

2

respuestas

Pregunta


aligning data for fprintf
for j=1:2 [a(j),b(j)]=size(char(FileName(:,j))); % b=[38 38] [c(j),d(j)]=size(char(FileName2(:,j))); % d=[38 38] first_spa...

más de 2 años hace | 2 respuestas | 0

2

respuestas

Pregunta


extracting sub matrix from a cell array
data: 2 x 1 cell array = [ 378063 x 12 table] [ 377840 x 12 table] I use the following codes to extract sub matrix from dat...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Pregunta


creating a loop for a specific computation
tCOD=readtable(full_file_name,'FileType','text', ... 'headerlines',end_of_header_li...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Cargar más