fbaillon
Followers: 0 Following: 0
Enseignant-Chercheur
Python, C++, C, Java, PHP, Javascript, MATLAB, HTML, CSS, Arduino, Shell, Perl, Fortran
Spoken Languages:
English, French
Statistics
RANK
6.525
of 295.467
REPUTATION
6
CONTRIBUTIONS
1 Question
5 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
1
RANK
13.982 of 20.234
REPUTATION
17
AVERAGE RATING
0.00
CONTRIBUTIONS
4 Files
DOWNLOADS
5
ALL TIME DOWNLOADS
172
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
2 Public Channels
AVERAGE RATING
50
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
How to know the name of the current learner in Grader?
To customize the tests of an exercise in grader (Moodle LMS), is it possible to know the name (login) of the learner?
bijna 4 jaar ago | 1 answer | 0
1
answerHow to extract two repeated toggling data from two fixed channel using MATLAB
If I understand your question correctly, you can write something like that: fid=fopen('testingGPS.txt.txt','r'); xdata=t...
meer dan 7 jaar ago | 0
how to find time interval of peak value in a timeseries ?
You can use the find function: T= ... % Time LD= .... % Load Demand timeYouWant=T(find(LD>800e3,1,'first)) Som...
meer dan 7 jaar ago | 0
How do I identify the a specific row number in a .txt file?
Have you tried with the delimiters '\r\n'? s = textscan(fid, '%s', 'delimiter', '\r\n');
meer dan 7 jaar ago | 0
how to vectorize these "for loop" ?
If you want to vectorize your problem, you can write something like this: n=10; m=n*n; % A=repmat(1:n,n*...
meer dan 7 jaar ago | 1
| accepted
Error using sendmail - Could not connect to SMTP host: smtp.gmail.com, port: 25;
You must enable StartTLS and spécifie the port : props.setProperty( 'mail.smtp.starttls.enable', 'true' ); props.setProp...
meer dan 7 jaar ago | 0