由买买提看人间百态

topics

全部话题 - 话题: fmin
(共0页)
b****u
发帖数: 2
1
我在cygwin下想编译numerical recipe 里的程序,可是编译到一半显示错误:
/usr/include/math.h:147: previous declaration of 'fmin' .
发现是nr里的一个函数名和include 里 math.h 里的函数名冲突。标准c 里面没有fmin
这个函数,我不知道cygwin里的这个函数是什么标准里的。
以前安装别的程序也碰到过这样的名字冲突问题,到底怎么解决?谢谢了!
s*********h
发帖数: 413
2
来自主题: EE版 - 有没有学电机的朋友?
现在我用volt/hertz 方法控制AC Induction Motor。
但是, 在启动的时候, 电流很大; 我调节了fmin和Vmin, 这样可以使电流小些, 但
是, 有的时候电机无法启动, 我想是无法克服pull-up torque. 我想知道, 应该如
何确定vhz profile 中的fmin, fmax, Vmin 和 Vmax?
(我用的Vhz + space vector PWM)
s*****o
发帖数: 22187
3
According to Thomas Lee, Fmin=1+A*(f/ft), where Fmin is the minimum noise
figure. However, I dont understand why yet.
w**********n
发帖数: 29
4
以前用R写的程序太慢了,现在学着转到C里面写。在R里我用到optimization function
, like nlminb, nlm.现在到C++里面,我应该用什么optimizaition function 做呢?
比如:
In R:
y <- function(x,a) sum((x-a)^2)
n <- 100
a_in <- rnorm(n)
fmin <- nlm( y, rep(0,n),a=a_in)
x_min <- fmin$estimate
In C/C++:
同样的过程C如何做呢?--head file, function name
多谢大伙的帮助!
t*******r
发帖数: 22634
5
fmin() in math.h, POSIX, use #ifdef "mask" your own definition.
s*********h
发帖数: 413
6
来自主题: EE版 - 有没有学电机的朋友?
It is an actual application but I am quite to new to the motor control...
I do not have such a starter box. All I can do is to use the volt/hertz
control profile to select correct Vmin, Vmax and fmin fmax. Is there any way
or any rules of thumb to set these parameters so that the motor can start
with or without load?
Thanks a lot!
j****s
发帖数: 156
s*****o
发帖数: 22187
8
在一定频率下,Fmin随ft增大而减小,应该和flicker noise关系不大,用的都是
thermal noise的公式。反正thomas lee这一部分我就从来没看懂过。
d********i
发帖数: 7
9
来自主题: Quant版 - 问一个maltab optimization的问题
看上去是整数规划中的Majorization问题,可以用多个Schur-Convex函数as the fmin
objective. Note that the separable-convex functions like power moments are
Schur-convex examples.
A***C
发帖数: 143
10
16个未知数,四个方程。
这种情况下一般是求解下面的最优问题
min_{X} ||AX^2+BX+C||_F^2
||x||_F 就是x的frobenious 范数,或者用其他范数。
用梯度下降法或者直接用matlab的函数fmin求解。
不过我猜不同的初始值给出不同的解,因为可以想象有16个未知数,4个方程,可能有
很多个不同的精确解。
(共0页)