问题标签 [wolfram-language]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - 您可以在 d3 中创建具有不同切片大小的饼图吗?
我正在尝试在 d3 ( https://reference.wolfram.com/language/ref/Files/SectorChart.en/O_5.png ) 中制作类似 Wolfram 的 SectorChart 的东西。我目前正在使用一个基本数据集
我正在尝试使用以下函数来改变圆弧的外半径
但这不起作用。甚至可以在d3中做到这一点吗?如果是这样,我是否走在正确的道路上?谢谢
wolfram-mathematica - 我想在一个坐标系中绘制 2 个列表图和一条拟合曲线,但叠加函数显示了这样的结果
plot1 = ListPlot[MNvsAmp, PlotRange -> All, PlotStyle -> PointSize[Large], ImagePadding -> 85, Frame -> {True, True, True, False}, FrameLabel -> {"Time, s", "Number of atoms, 1000"}, PlotMarkers -> {marker1, .035}, PlotLegends -> "gamma = 1.903 beta = 2.173*10^(-20)"];
plot2 = ListPlot[TvsTXTvalue, PlotRange -> All, PlotStyle -> PointSize[Large], ImagePadding -> 85, Frame -> {False, False, False, True}, FrameTicks ->{None, None, None, All}, FrameLabel -> {{"","Temperature, mK"},{"",""}}, PlotMarkers -> {marker2, .035}, PlotLegends -> "gamma = 1.903 beta = 2.173*10^(-20)"];
plot3 = Plot[Normal[bettafit], {tt, 3.7, 4.4}, PlotStyle -> Directive [Thick], Axes -> {False, False}]
Overlay[{plot1, plot2, plot3}]
raspberry-pi - Raspbian Stretch wolframscript 不工作
似乎 wolframscript 不再适用于最新版本的 raspbian。我试图在命令行上运行“wolframscript”,但它说它不是命令。当我尝试运行 .wls 脚本时,它给了我错误:
有什么方法可以重新安装 wolframscript 或让它工作?
wolfram-language - 强制 WolframCloud 函数进行评估
我正在使用 sandbox.open.wolframcloud.com。我定义了一个函数 f[x],它应该返回 x 的后继,例如 f[1] 应该返回 2。但是,我得到 f[1] 作为输出。我读过关于 Evaluate[] 但它似乎没有帮助:
我在这里做错了什么?
image - 使用函数转换图像
如何转换图像,使图像的每个像素径向向内/向外移动一定量,该量由用户定义的函数确定?(在 Wolfram Mathematica 中)
google-maps-api-3 - Google Maps URL Tile Server API 和文档?
我想在我的Wolfram 语言项目中使用 Google Maps 瓦片来制作地图。目前有18 个 Google Maps API,我想我需要Static Maps API。但是,此 API 似乎返回整个地图而不是单个图块。
我需要将哪个 API 用作GeoServer
Wolfram 语言地图和制图功能中的选项的 URL 切片服务器?另外,在 Google 的文档中哪里有 URL tile 服务器的官方文档?
更新
从下面的@ChrisDegnen 回答中,我认为静态地图 API 是唯一的选择。然而。我想使用地图作为 Wolfram 语言中现有地图和制图功能的背景。不幸的是,静态地图 API 不允许明确指定经纬度边界,因此不太适合。
例如,使用"visible
" 参数设置地图边界来绘制美国大陆地图。
静态地图 API 返回此地图(我的个人密钥已被删除)。
与默认地图相比,静态地图 API 添加了太多的填充GeoGraphics
。
这个额外的填充会丢弃我在代码中添加到地图的任何内容。所以最后我不能使用谷歌地图。