当前位置: 编程技术>移动开发
本页文章导读:
▪dd_tool一类分门别类的简单测试 dd_tool一类分类的简单测试
今天看D.M.J. Tax的Data description toolbox (dd_tool)手册,里面有一段简单的测试代码:
x=oc_set(gendatb([50,10]),'1')
scatterd(x,'legend')
w=svdd(target_class(x),0.1,8)
plotc(w)
w=svdd(x,0.1,8)
pl.........
▪ 最容易的免费ARM学习环境的建立 最简单的免费ARM学习环境的建立
这几天在看arm, 有几种免费选择:1. 如果学汇编, 用qemu即可,它可以直接执行arm汇编程序。 apt-get install qemu-system qemu-arm -L /usr/arm-linux-gnueabi ~/workspace.........
▪ Storyboard里头的几种Segue区别:push,modal,popover,replace和custom Storyboard里面的几种Segue区别:push,modal,popover,replace和custom
在storyboard中,segue有几种不同的类型,在iphone和ipad的开发中,segue的类型是不同的。在iphone中,segue有:push,modal,和custom三.........
[1]dd_tool一类分门别类的简单测试
来源: 互联网 发布时间: 2014-02-18
dd_tool一类分类的简单测试
一开始会出现上篇《PRtools模式识别工具箱关于version运行出错》问题,得以解决。
最终运行图像如下:
今天看D.M.J. Tax的Data description toolbox (dd_tool)手册,里面有一段简单的测试代码:
x=oc_set(gendatb([50,10]),'1') scatterd(x,'legend') w=svdd(target_class(x),0.1,8) plotc(w) w=svdd(x,0.1,8) plotc(w)
一开始会出现上篇《PRtools模式识别工具箱关于version运行出错》问题,得以解决。
最终运行图像如下:
[2] 最容易的免费ARM学习环境的建立
来源: 互联网 发布时间: 2014-02-18
最简单的免费ARM学习环境的建立
这几天在看arm, 有几种免费选择:
1. 如果学汇编, 用qemu即可,它可以直接执行arm汇编程序。
apt-get install qemu-system
qemu-arm -L /usr/arm-linux-gnueabi ~/workspace/hello/Debug/hello 动态链接也可以哦
2. 懒得开模拟器?有android手机?root过?好,装上adb驱动,编译好的程序扔到/system/bin或者/data下面去执行。
在ubuntu下安装交叉编译工具,或者再安装eclipse-cdt就更方便了。 记得要静态编译!ubuntu自带arm编译工具: apt-get install gcc-arm-linux-gnueabi
3. 用qemu模拟arm安装debian arm电脑,所有开发就像在x86 debian(和ubuntu一样)
http://www.cnblogs.com/Akann/archive/2012/01/01/2307804.html
如果让系统自动分区,可能挂载img的分区偏移要重新计算,参见:
http://hi.baidu.com/konglinglong/blog/item/ede36a0e5473e8ef37d122e1.html
安装完了和真正的系统差不多,uname一看是arm的!
这几天在看arm, 有几种免费选择:
1. 如果学汇编, 用qemu即可,它可以直接执行arm汇编程序。
apt-get install qemu-system
qemu-arm -L /usr/arm-linux-gnueabi ~/workspace/hello/Debug/hello 动态链接也可以哦
2. 懒得开模拟器?有android手机?root过?好,装上adb驱动,编译好的程序扔到/system/bin或者/data下面去执行。
在ubuntu下安装交叉编译工具,或者再安装eclipse-cdt就更方便了。 记得要静态编译!ubuntu自带arm编译工具: apt-get install gcc-arm-linux-gnueabi
3. 用qemu模拟arm安装debian arm电脑,所有开发就像在x86 debian(和ubuntu一样)
http://www.cnblogs.com/Akann/archive/2012/01/01/2307804.html
如果让系统自动分区,可能挂载img的分区偏移要重新计算,参见:
http://hi.baidu.com/konglinglong/blog/item/ede36a0e5473e8ef37d122e1.html
安装完了和真正的系统差不多,uname一看是arm的!
1 楼
steeven
2012-09-01
用qemu-arm运行的,建议静态编译,然后直接qemu-arm ./hello运行,还想更懒?
sudo apt-get install qemu-user-static, 安装后./hello居然也能运行?!
readelf -h hello, 是arm的啊~~ 哈,这就是qemu注册到linux系统后,直接运行异构平台程序了。有趣~~
同样qemu-mips qemu-mipel的程序也能在x86下面直接运行,什么都不要~
sudo apt-get install qemu-user-static, 安装后./hello居然也能运行?!
readelf -h hello, 是arm的啊~~ 哈,这就是qemu注册到linux系统后,直接运行异构平台程序了。有趣~~
同样qemu-mips qemu-mipel的程序也能在x86下面直接运行,什么都不要~
2 楼
quiii
2012-09-03
[3] Storyboard里头的几种Segue区别:push,modal,popover,replace和custom
来源: 互联网 发布时间: 2014-02-18
Storyboard里面的几种Segue区别:push,modal,popover,replace和custom
在storyboard中,segue有几种不同的类型,在iphone和ipad的开发中,segue的类型是不同的。
在iphone中,segue有:push,modal,和custom三种不同的类型,这些类型的区别在与新页面出现的方式。
而在ipad中,有push,modal,popover,replace和custom五种不同的类型。
modal 模态转换
最常用的场景,新的场景完全盖住了旧的那个。用户无法再与上一个场景交互,除非他们先关闭这个场景。
是在viewController中的标准切换的方式,包括淡出什么的,可以选切换动画。
Modalview:就是会弹出一个view,你只能在该view上操作,而不能切换到其他view,除非你关闭了modalview.
Modal View对应的segue type就是modal segue。
*Modal:Transition to another scene for the purposes of completing a task.当user在弹出的modalview里操作完后,就应该dismiss the modal view scene然后切换回the originalview.
push
Push类型一般是需要头一个界面是个Navigation Controller的。
是在navigation View Controller中下一级时使用的那种从右侧划入的方式
*Push:Create a chain of scenes where the user can move forward or back.该segue type是和navigation viewcontrollers一起使用。
popover(iPad only)
popover 类型,就是采用浮动窗的形式把新页面展示出来
*Popover(iPad only):Displays the scene in a pop-up “window” over top of the current view.
*Replace (iPad only):
替换当前scene,
Replace the current scene with another. This is used in some specialized iPad viewcontrollers (e.g. split-view controller).
custom
就是自定义跳转方式啦。
*Custom:Used for programming a customtransition between scenes.
在Storyboard中使用自定义的segue类型
http://ryan.easymorse.com/?p=72
在storyboard中,segue有几种不同的类型,在iphone和ipad的开发中,segue的类型是不同的。
在iphone中,segue有:push,modal,和custom三种不同的类型,这些类型的区别在与新页面出现的方式。
而在ipad中,有push,modal,popover,replace和custom五种不同的类型。
modal 模态转换
最常用的场景,新的场景完全盖住了旧的那个。用户无法再与上一个场景交互,除非他们先关闭这个场景。
是在viewController中的标准切换的方式,包括淡出什么的,可以选切换动画。
Modalview:就是会弹出一个view,你只能在该view上操作,而不能切换到其他view,除非你关闭了modalview.
Modal View对应的segue type就是modal segue。
*Modal:Transition to another scene for the purposes of completing a task.当user在弹出的modalview里操作完后,就应该dismiss the modal view scene然后切换回the originalview.
push
Push类型一般是需要头一个界面是个Navigation Controller的。
是在navigation View Controller中下一级时使用的那种从右侧划入的方式
*Push:Create a chain of scenes where the user can move forward or back.该segue type是和navigation viewcontrollers一起使用。
popover(iPad only)
popover 类型,就是采用浮动窗的形式把新页面展示出来
*Popover(iPad only):Displays the scene in a pop-up “window” over top of the current view.
*Replace (iPad only):
替换当前scene,
Replace the current scene with another. This is used in some specialized iPad viewcontrollers (e.g. split-view controller).
custom
就是自定义跳转方式啦。
*Custom:Used for programming a customtransition between scenes.
在Storyboard中使用自定义的segue类型
http://ryan.easymorse.com/?p=72
最新技术文章: