Statistics
All
RANK
5,015
of 295,448
REPUTATION
10
CONTRIBUTIONS
0 Questions
5 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
1
RANK
379 of 20,227
REPUTATION
4,189
AVERAGE RATING
4.20
CONTRIBUTIONS
3 Files
DOWNLOADS
4
ALL TIME DOWNLOADS
38443
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Answered
How to delete files ending with odd number?
You could looop through all the files and delete ones that have an odd number using regexp, regular expression search files...
How to delete files ending with odd number?
You could looop through all the files and delete ones that have an odd number using regexp, regular expression search files...
6 years ago | 1
| accepted
Answered
read numbers from mixed string
You need to print the variable A (not "line") to the newdata1 file. Also a quick modification will allow it to work on all the v...
read numbers from mixed string
You need to print the variable A (not "line") to the newdata1 file. Also a quick modification will allow it to work on all the v...
7 years ago | 0
Answered
Hello, I want to plot two variables (with different number of phases)...
To plot your data against one another you could use plotyy % make up some data volume = [1:13]'+wgn(13,1, 10); % add som...
Hello, I want to plot two variables (with different number of phases)...
To plot your data against one another you could use plotyy % make up some data volume = [1:13]'+wgn(13,1, 10); % add som...
7 years ago | 0
Answered
I would like to write an else if statement from data imported from an excel file
You have a couple options. If you just want to find the row for Mary, you can use option 1. If you specifically want an if/else ...
I would like to write an else if statement from data imported from an excel file
You have a couple options. If you just want to find the row for Mary, you can use option 1. If you specifically want an if/else ...
7 years ago | 0
Answered
How to enter data in the system command?
Use sprintf to create dynamic text, for example: for i=3:5 system( sprintf('mseed2sac-2.1-win32 >> %s<>', files{i}) );...
How to enter data in the system command?
Use sprintf to create dynamic text, for example: for i=3:5 system( sprintf('mseed2sac-2.1-win32 >> %s<>', files{i}) );...
7 years ago | 0
| accepted