0% found this document useful (0 votes)
53 views

Research Progress Report Template

The document is a project progress report dated February 11, 2019. It includes sections on the project roadmap, updates, results, things needing help, and a process diary. The roadmap lists the main task and steps of the project. Updates provide completion dates for steps 2 and 1. Results are meant to discuss the research purpose and findings. Help is needed on getting feedback, writing a paper, and an idea that is stuck. The process diary includes Python code for an incidence matrix function.

Uploaded by

nilo
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
53 views

Research Progress Report Template

The document is a project progress report dated February 11, 2019. It includes sections on the project roadmap, updates, results, things needing help, and a process diary. The roadmap lists the main task and steps of the project. Updates provide completion dates for steps 2 and 1. Results are meant to discuss the research purpose and findings. Help is needed on getting feedback, writing a paper, and an idea that is stuck. The process diary includes Python code for an incidence matrix function.

Uploaded by

nilo
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

PROJECT PROGRESS REPORT

February 11, 2019

Jinwen Luo
AQM GSE&IS UCLA
Contents

0.1 Project Roadmap . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2


0.2 Project Updates . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
0.3 Results . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
0.4 Things I Need Help with and my Plan to Resolve . . . . . . . . . . . . . . 2
0.5 Process Diary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3

1
2

0.1 Project Roadmap


1. The main task of the project

2. the first step of the project

3. the second step of the project

4. the third step of the project

5. and then

6. My paper got published!

0.2 Project Updates


1. Update when anything related to the roadmap is addressed

2. Dec,2018. Completed the step2

3. Nov,2018. Completed the step1

4. Oct,2018. Start the project

0.3 Results
Main Results related to the purpose of the research or things to disccuss

0.4 Things I Need Help with and my Plan to Re-


solve
1. I need feedback on my project

2. I’m not sure how to start writing a paper.

3. I have an idea but IâĂŹm stuck

4. Can I park at Rellis?


3

0.5 Process Diary


1 import numpy a s np
2

3 def incmatrix ( genl1 , genl2 ) :


4 m = len ( genl1 )
5 n = len ( genl2 )
6 M = None #t o become t h e i n c i d e n c e matrix
7 VT = np . z e r o s ( ( n∗m, 1 ) , i n t ) #dummy v a r i a b l e
8

9 #compute t h e b i t w i s e xor matrix


10 M1 = b i t x o r m a t r i x ( g e n l 1 )
11 M2 = np . t r i u ( b i t x o r m a t r i x ( g e n l 2 ) , 1 )
12

13 f o r i i n r a n g e (m− 1) :
14 f o r j i n r a n g e ( i +1, m) :
15 [ r , c ] = np . where (M2 == M1[ i , j ] )
16 f o r k in range ( len ( r ) ) :
17 VT[ ( i ) ∗n + r [ k ] ] = 1 ;
18 VT[ ( i ) ∗n + c [ k ] ] = 1 ;
19 VT[ ( j ) ∗n + r [ k ] ] = 1 ;
20 VT[ ( j ) ∗n + c [ k ] ] = 1 ;
21

22 i f M i s None :
23 M = np . copy (VT)
24 else :
25 M = np . c o n c a t e n a t e ( (M, VT) , 1 )
26

27 VT = np . z e r o s ( ( n∗m, 1 ) , i n t )
28

29 return M

Listing 1: Python example


4

References

You might also like