- Sep 17 Thu 2015 16:25
-
[MATLAB] print character '
- Aug 12 Wed 2015 12:25
-
[gcc for windows] MinGW的make指令
mingw32-make
- Apr 08 Wed 2015 10:47
-
[MATLAB] Set random seed for randsrc
rng(seed) : seeds the random number generator using the nonnegative integer seed
rng('shuffle') : seeds the random number generator based on the current time
rng('shuffle') : seeds the random number generator based on the current time
- Apr 02 Thu 2015 14:54
-
[MATLAB] Warning: You are using gcc version '4.x.x'. The version of gcc is not supported.
Warning: You are using gcc version '4.9.2'. The version of gcc is not supported. The version currently supported with mex is 4.7.x
Solution: change the gcc compiler to version 4.7 by the following mex command.
Solution: change the gcc compiler to version 4.7 by the following mex command.
- Oct 18 Sat 2014 21:46
-
[Windows] Chrome 瀏覽器的標籤 / 選單上的中文字變成方格
問題: Chrome 瀏覽器的標題列 / 選單上的中文字變成方塊
原因: 應該是因為之前換過佈景主題,chrome 更新後不支援我使用的中文字體了。
解法: 桌面上按右鍵,點選[個人化],將自訂的佈景主題換回 Windows 預設的佈景主題。
done
原因: 應該是因為之前換過佈景主題,chrome 更新後不支援我使用的中文字體了。
解法: 桌面上按右鍵,點選[個人化],將自訂的佈景主題換回 Windows 預設的佈景主題。
done
- Jul 09 Wed 2014 15:55
-
Copy all to clipboard
- Jul 09 Wed 2014 11:25
-
How to merge all text fils in any directory to one single file?
cat * > merged_file.txt
- May 21 Wed 2014 15:56
-
vi 常用指令
/KEYWORD : search forward to find KEYWORD
n : find next
?KEYWORD : search backward to find KEYWORD
N : find previous
n : find next
?KEYWORD : search backward to find KEYWORD
N : find previous
- Mar 10 Mon 2014 15:25
-
[Debussy] Show signal values in nTrace (在 nTrace 視窗顯示 signal value)
在 nTrace 視窗直接按 x 鍵可以把目前 nWave 游標所在時間的所有 signal 的 value 顯示在 signal 下方.
Active Annotation in Source Window
Use Source ->Active Annotation (or press x key in nTrace window) to annotate simulation result to source window.
It will annotate the signal values at the cursor time and display the values under each signal.
It will also display signal transition.
Any signals can be annotated if they are dumped, no matter whether their waveform are displayed
Active Annotation in Source Window
Use Source ->Active Annotation (or press x key in nTrace window) to annotate simulation result to source window.
It will annotate the signal values at the cursor time and display the values under each signal.
It will also display signal transition.
Any signals can be annotated if they are dumped, no matter whether their waveform are displayed
- Mar 03 Mon 2014 11:02
-
tar gzip 壓縮/解壓縮指令
- Feb 13 Thu 2014 15:13
-
[Verilog] Multicycle path setting in Design Compiler
Ex 1. The path from FF1 to FF2 is designed to take 2 clock cycles rather than 1.
set_multicycle_path -setup 2 \
-from [get_cells FF1] -to [get_cells FF2]
set_multicycle_path -hold 1 \
-from [get_cells FF1] -to [get_cells FF2]
set_multicycle_path -setup 2 \
-from [get_cells FF1] -to [get_cells FF2]
set_multicycle_path -hold 1 \
-from [get_cells FF1] -to [get_cells FF2]
- Feb 07 Fri 2014 15:23
-
[Matlab] Comment multiple lines