Statistik
RANG
1.709
of 300.851
REPUTATION
40
BEITRÄGE
0 Fragen
13 Antworten
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
6
RANG
of 21.094
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Discussions
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Table - Write results in a new rows
Hi, you can create a cell array and then add a new row to your table by concatenation. For example if your table variables are ...
fast 7 Jahre vor | 0
save matfile with current time stamp
Hi, you have to concatenate the string first and add the fileending. Try this: save (['C:\dannyuser\project', optimization, dat...
fast 7 Jahre vor | 0
convert cell in minutes to seconds vector
Hi try this: seconds = zeros(size(time)); for i = 1:size(time,2) seconds(i) = time{i}(1,1)*60 + time{i}(1,2); end Greet...
fast 7 Jahre vor | 0
I have 200 files with 20 columns each. The 1st column remains the same for all files. I want to sum up all 2nd columns from 200 files, .....20th columns from 200 files. I want the first column to remain the same.
Hi you have to use a for-loop to access your data and then add up the colums. First use dir to get your files files = dir('C...
fast 7 Jahre vor | 0
Multiple bar plots and error bars
Hi, you can use the functions bar and errorbar. Plot your Mean-Data with bar and your standard deviation with errorbar. Gre...
fast 7 Jahre vor | 0
File Names inside a folder(x) and subfolders of(x)
Here you go: Path = 'C:\Users\' % wherever you want to search searchPath = [Path ,'\**\*.csv']; % Search in folder and s...
fast 7 Jahre vor | 1
| akzeptiert
how can I preallocate for speed in a loop?
Hi. Since x_p grows in each iteration of your for-loop you can easily define its size at the begining. Just use this before you...
fast 7 Jahre vor | 1
| akzeptiert
Using Matlab App Designer with 2 Dependent Pop Up Menus
You can do this by using a callback on changinge the value in your first drop down. All the magic is done in function DropDown...
fast 7 Jahre vor | 1
| akzeptiert
How to get the relsults in different matrix after for loop
Hi if you really want to use eval,try this code: for i=1:3 tempName = ['A', num2str(i)]; eval([tempName '= B*i +C*i;...
fast 7 Jahre vor | 1
how to extract data based upon latitude longitude value form a matrix file
Hi. First of all you have to tell us how the data is organized inside the .mat file. Greetings Stefan
fast 7 Jahre vor | 0
| akzeptiert
Search number in one cell of a csv file
Try this code. It should work for you. If not feel free to ask. Greetings Stefan % Get data from cell head = header{1,1}{1,...
fast 7 Jahre vor | 1
| akzeptiert
Move select data out of a structure
How are your double values organized inside the structure fields? In cells,etc....?
fast 7 Jahre vor | 0
how can i split 30*9 matrix into 20*9 and 10*9?
Hi, you can use this two lines. X_1 = X(1:20,:) X_2 = X(21:end,:) Greetings Stefan
fast 7 Jahre vor | 1
| akzeptiert



