我尝试在R中绘制对数-对数图,但当我取一个特定值的对数时,我得不到一致的答案,例如:
In R:
> log(192.4)
[1] 5.259577
On my phone:
2.28
On a web scientific calculator
I get: 2.2842050677018
是什么导致了R和其他计算器之间的不一致?使用哪一个才是正确的?
我用过的。
我正在尝试用下面的代码绘制速度剖面图。将绘制轴,但不会绘制数据点。 import pandas as pd
from matplotlib import pyplot as plt
n = 0.4
k = 53
d = 0.000264
r = 0.000132
p = 15000
u = (n/n+1)*(p*1/2*k)**(1/n)*(d**((n+1)/n) - r**((n+1)/n))
plt.plot(u) 生成的图表: ?
一个非常简单的疑问,但我不知道如何处理。
我想为'datos.txt‘中的所有数据绘制一个直方图。
a)通过使用R:
datos<-scan("datos.txt")
pdf("xh.pdf")
hist(datos)
dev.off()
b)如何在Perl中调用R来做同样的事情?
#!/usr/bin/perl
open(DAT,"datos.txt");
while (<DAT>) {
chomp;
push(@datos,$_);
}
#now I want a histogram of values in @
我想通过阅读和把这些数字放在y-列表中,用科学符号来绘制数字。这是我的密码。
import matplotlib.pyplot as plt
import csv
x = []
y = []
with open('test1.txt','r') as csvfile:
plots = csv.reader(csvfile, delimiter='\t')
for row in plots:
x.append(float(row[0]))
y.append(float(row[1]
我有一个在背景图像上以1,1的速度移动的精灵。我想要绘制的背景图像与精灵始终在中心,因为背景大约是2000x2000。我的问题是,当精灵移动背景重新定位时,就好像精灵在2,2移动,背景在1,1移动,所以即使精灵在1,1移动,背景移动也不能比这更慢吗?
要更新精灵的速度,请执行以下操作:
Point car = new Point(
((GameBoard) findViewById(R.id.the_canvas)).getCarX(),
((GameBoard) findViewById(R.id.the_canvas)).getCar
我试着用try图来绘制轨道速度,但不知怎么的,gnuplot得到了与我完全不同的结果。现在,根据经验,我认为我的价值观是正确的,但我检查了谷歌的计算器,并得到了我的结果。
我使用和的公式。现在gnuplot本身的速度约为3.2公里/秒。
set xlabel "Altitude above sea level (meters)"
set ylabel "Orbital velocity (meters per second)"
set title "Velocity of an 80×100 km orbit around Kebrin"
set
我正在绘制一个向量场,其中两个分量是由数值积分确定的,积分是用将要绘制向量的空间中的坐标来计算的。
在下面的代码中,我定义了依赖于r和z的integrand函数,然后在一个循环中定义它们的值,并在每个积分(r,z)上计算这两个积分。
我有两个问题:
( 1)是否有更多的pythonic方法来用变量r和z来计算这些积分?
2)存储积分值及其坐标的最佳方法是什么,以便从quiver s生成quiver图?
import scipy.integrate as spi
import scipy.special as sps
import numpy as np
R = 2
V = 10
def E