Community Profile

photo

fbaillon


Last seen: Today Active since 2014

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

Content Feed

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?

meer dan 3 jaar 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...

meer dan 6 jaar 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...

meer dan 6 jaar 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');

meer dan 6 jaar 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*...

meer dan 6 jaar 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...

meer dan 6 jaar ago | 0