วันพฤหัสบดีที่ 27 เมษายน พ.ศ. 2560

การสร้าง Table ในโปรแกรม ImageJ

Table…

เปิดตารางว่าง ๆ คล้าย ๆ Results Table ยกตัวอย่าง
https://imagej.nih.gov/ij/macros/SineCosineTable2.txt


// Sine Cosine Table
//
// This macro displays a sine/cosine table in a TextWindow.
  requires("1.41g");
  title1 = "Sine/Cosine Table";
  title2 = "["+title1+"]";
  f = title2;
  if (isOpen(title1))
     print(f, "\\Clear");
  else
     run("Table...", "name="+title2+" width=250 height=600");
  print(f, "\\Headings:n\tSine\tCosine");
  for (n=0; n<=2*PI; n += 0.1)
     print(f, n + "\t" + sin(n) + "\t" + cos(n));

ตัวอย่าง

1. เปิดเมนู

2. การตั้งค่า



3. หน้าต่างการทำงาน


ไม่มีความคิดเห็น:

แสดงความคิดเห็น