Community Profile

photo

fbaillon


Last seen: 3 days ago Active since 2014

Followers: 0   Following: 0

Message

Enseignant-Chercheur

Programming Languages:
Python, C++, C, Java, PHP, Javascript, MATLAB, HTML, CSS, Arduino, Shell, Perl, Fortran
Spoken Languages:
English, French

Statistics

All
  • GitHub Submissions Level 2
  • First Review
  • Treasure Hunt Participant
  • Community Group Solver
  • First Submission
  • Knowledgeable Level 1
  • First Answer
  • Revival Level 1
  • Solver

View badges

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?

3 years ago | 1 answer | 0

1

answer

Answered
How 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...

6 years ago | 0

Answered
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...

6 years ago | 0

Answered
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');

6 years ago | 0

Answered
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*...

6 years ago | 1

| accepted

Answered
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...

6 years ago | 0