Community Profile

photo

fbaillon


Last seen: 7 días hace Con actividad desde 2014

Followers: 0   Following: 0

Contacto

Enseignant-Chercheur

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

Estadísticas

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

Ver insignias

Feeds

Pregunta


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?

más de 3 años hace | 1 respuesta | 0

1

respuesta

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

más de 6 años hace | 0

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

más de 6 años hace | 0

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

más de 6 años hace | 0

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

más de 6 años hace | 1

| aceptada

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

más de 6 años hace | 0