Statistics
RANK
216,408
of 301,433
REPUTATION
0
CONTRIBUTIONS
3 Questions
1 Answer
ANSWER ACCEPTANCE
66.67%
VOTES RECEIVED
0
RANK
of 21,272
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 174,520
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
Difficulty in Concatenating the matrix and preallocation- I would like to concatenate marix output generated from each iteration one after the other but my matlab code add up matrix each time from the beginning. How can i change it.Please help-Thanks
Data1=('uComponent.txt'); Data2=('vComponent.txt'); Data3=('wComponent.txt'); u=importdata(Data1); v=importdata(...
10 years ago | 1 answer | 0
1
answerI am having a problem to save the data as a text file (Matrix of size 31500x6) in matlab. I uesd a generic save function in matlab but then its saving the digits with e_function, which i can not use. Pleasee help..
i just found out the syntex..i just used fprintf(fid,'%5.4f\t%5.4f\t%5.4f\t%5.4f\t%5.4f\t%5.4f\r\n',T') and its working fine.....
10 years ago | 0
| accepted
Question
I am having a problem to save the data as a text file (Matrix of size 31500x6) in matlab. I uesd a generic save function in matlab but then its saving the digits with e_function, which i can not use. Pleasee help..
I used the function.... save Twind4rotor1.txt T -ascii; where T is matrix of (31500x6). In the .txt file, the data are stored ...
10 years ago | 1 answer | 0
1
answerQuestion
i am working with huge data (1800000x39 mtrix) in MATLAB. I have to extract a block of matrix from certain interval out of the this large matrix. How can i concatenate the matrix from each iteration.
data=('test.txt'); M=importdata(data); for i=1:100 m1=M(i:i+3,1:3) end How can i concatenate the matrix generated by...
10 years ago | 1 answer | 0
