码迷,mamicode.com
首页 > 其他好文 > 详细

常见的一些tips

时间:2015-03-30 17:49:55      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:

今天算是完成了最最简略的特征矩阵提取。其实呢,就是一个与数学相关的问题,C#并没有利用到很深的地步。

1 Console.Write("{0:F2}", eigenMatrix[i][j]); //输出流的字符串格式化

但是找到了一个颇有用的东西,可以供日后慢慢研究(调整控制台窗体在屏幕中的位置):

using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;


namespace ConsoleApplication10
{
  class Program
  {
    const int SWP_NOSIZE = 0x0001;


    [DllImport("kernel32.dll", ExactSpelling = true)]
    private static extern IntPtr GetConsoleWindow();

    private static IntPtr MyConsole = GetConsoleWindow();

    [DllImport("user32.dll", EntryPoint = "SetWindowPos")]
    public static extern IntPtr SetWindowPos(IntPtr hWnd, int hWndInsertAfter, int x, int Y, int cx, int cy, int wFlags);

    static void Main(string[] args)
    {
      int xpos = 300;
      int ypos = 300;
      SetWindowPos(MyConsole, 0, xpos, ypos, 0, 0, SWP_NOSIZE);
      Console.WriteLine("any text");
      Console.Read();
    }
  }
}

 

常见的一些tips

标签:

原文地址:http://www.cnblogs.com/jingchao/p/4378270.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!