photo

Ismail Qeshta


Aktiv seit 2017

Followers: 0   Following: 0

Statistik

  • Thankful Level 4

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Is there any code that can detect a file with certain size and replace it with another one?
Hi, I am now post-processing my analysis data. I noticed that some files do not have the targeted data, as the analysis stopp...

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to fix this error in interp1?
Hi, I am trying to interpolate X values from Y values using a set of imported data. The problem is that when I set both x an...

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Error in my "for" loop?
Hi, I basically need to run a nested (or series) loop. I need to run the permutations for a and b and run an external software ...

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to modify this "for" loop so it can read maximum Y value instead of X?
Hi, I have this code that reads maximum X value and its corresponding Y value, and prints all results (Y values) in one file. ...

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to put the second "for" loop inside the first one?
Hi, I need to combine two "for" loops. I actually need the second loop (c and t arrays) to pass through all the results from t...

mehr als 5 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


How to modify this could so it can read from different files groups?
Hi, I have this code that reads from 10 files each maximum X value and its corresponding Y value and prints all results in on...

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to fix this error in interpolation?
Hi, I have a set of data to be interpolated for two files. I could use the code below when the second file (representing Y ax...

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to modify this code to make it import values from a file?
Hi, The following code opens a file (named "Pulse.acc") and writes c, s and t values as follows: 0 1 0 0 2 0 0 3 0 It also...

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to sort the results correctly in this "for" loop?
Hi, I need to find the Y value that corresponds to the maximum X value for the curves attached herewith for 10 files. I am usi...

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to fix this error in "for" loop?
Hi, I need to find the Y value that corresponds to the maximum X value for the curves attached herewith. I tried to use interp...

mehr als 5 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


How to find Y value that corresponds to the maximum X value in these graphs?
Hi, I need to find the Y value that corresponds to the maximum X value for the curves attached herewith. I tried to use inte...

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to import values from a column in "for" loop?
Hi, The following code opens a file (named "Pulse.acc") and writes c, s and t values as follows: 0 1 0 0 2 0 0 3 0 It also...

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How obtain the Y value that corresponds to the largest X value for a number of plots?
Hi, I am trying to write a code that gives me the Y value that corresponds to the largest X value for a number of plots. I h...

mehr als 5 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


How to open two files instead of one, using this "for" loop?
Hi, My current "for" loop opens one file only and writes three lines in it using permurations, for c, s and t. I need to modif...

mehr als 5 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


How to number permutation values in "for" loop to be sequentially printed as 1, 2, 3 etc?
Hi. I have a = [1 2 3] b = [1 2 3] c = [1 2 3] I am running for loop for i = 1:3, j= 1:3 and m = 1:3. I need to ...

etwa 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to improve the curve fitting for my data using matlab?
Hi, I am using the code below to draw a fitting curve for my attached data. I would like to insist that the carve gets closer...

etwa 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to resolve this error message in interpolate1?
Hi, I am using the following code for interpolation: clear; clc; y=load ('xx11.0.txt'); x=load ('yy11.0.txt'); ...

etwa 6 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


How to modify the command "find" to make it find values in interval?
Hi, The following is for a threshold value. The detects all values larger than a certain "threshold" value (in the code belo...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to adjust the "isnan" to make it work for cell?
Hi I have the below for loop. I would like to replace the NaN data output with 0.07. I keep getting the below error message. Cou...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to re-write these multiple codes in a single code?
Hi, I am getting the interpolation of 400 data from 100 plots. I have built one code and duplicated it into 400 copies in th...

mehr als 6 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


How to modify "find" code to make it work for three data files?
Hi, I am trying to use the code below to find values that exceed certain value (0.018) in a set of files, and then count the ...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to prevent over-writing the y2 in my interpolation?
Hi, I would like to get the interpolation y2 for data samples using the code below. y2 is over-written at each iteration ste...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to select columns from data matrix using "for" loop?
Hi, I would like to select columns from a data matrix and use them to interpolate data from another file. For example, first ...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to select columns from data matrix using "for" loop?
Hi, I would like to select columns from a data matrix and use them to interpolate data from another file. For example, first ...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to sum unequal matrices of sizes 10X37 and 10X33?
Hi, I have unequal matrices, with sizes 10X37 and 10X33, I usually manually fill in the difference between the 37 and 33 with ze...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to print the output file in .txt format?
Hi. I am generating results using the following code: I need to print an output file to be placed in a specific folder for "For...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to prevent over-writing in my for loop?
My interpolation for loop keeps over-writing the last value, even though I assigned x2=zeros(N,2). clear; clc; ...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


My interpolation works for one set, but does not work for the other
Hi, I am using the following code for interpolation from data in files. The problem is that the code runs very nicely in the ...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Problem in my for loop to find maximum y value
Hi, my for loop keeps repeating the same third value for the maximum index value. Can anyone please check it for me? the full ...

mehr als 6 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


How to number permutation values, 11, 12, 13, 14, etc in "for" loop to be sequentially printed as 1, 2, 3 etc?
Hi, I am running my simulation using "for" loop. The problem is that I have "i" and "j" orders on which I refer to each value,...

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Mehr laden