Community Profile

photo

fbaillon


Last seen: 10日 前 2014 年からアクティブ

Followers: 0   Following: 0

連絡

Enseignant-Chercheur

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

統計

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

バッジを表示

Feeds

表示方法

質問


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年以上 前 | 1 件の回答 | 0

1

回答

回答済み
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年以上 前 | 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...

6年以上 前 | 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');

6年以上 前 | 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*...

6年以上 前 | 1

| 採用済み

回答済み
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年以上 前 | 0