To clone code from the cloud to local pc (used only once)
git clone {link}
- Before changing code
git pull origin
- after adding/ changing code and testing it, go to the project tab (GITHUB and move item to DONE column)
git add .
git commit -am "{descriptive msg of changes}"
- to push local changes to the cloud
git push origin
and repeat from 1-3
- Sampling frequency of signal.
- Start and end of time scale
- Number of the break points and their positions (i.e. the points that the signal definition rule changes). Example: The signal is defined from -2:0 as a DC signal and from 0:2 as ramp the user will enter that the number of break points =1 and the position at t=0.
2. According to the number of break points the program asks the user at each region to enter the specifications of the signal at this region Which are:
- DC signal: Amplitude.
- Ramp signal: slope –intercept.
- General order polynomial: Amplitude-power –intercept.
- Exponential signal: Amplitude –exponent.
- Sinusoidal signal: Amplitude –frequency –phase.
- Amplitude Scaling:scale value.
- Time reversal.
- Time shift: shift value.
- Expanding the signal: expanding value
- Compressing the signal: compressing value
- None