python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Is there a way to plot a layout in Julia, using different colours per plot?
I am trying to plot a layout in Julia env using the code below
x = 1:100
y = sin.(rand((Normal()), 100,4))
# plot
plot(x,y)
# layout
plot(x,y, layout = (4,1), color = [:red,:blue])
What I expected wa...
ouroukai
Votes: 0
Answers: 1
Arrays have incorrect length or dimension. Contour plot in Julia
I am trying to make a simple contour plot.
using Plots
xi = -10:10
zi = 0:-1:-10
X = xi'.*ones(size(zi))
Z = zi .*ones(size(xi))'
plot(contour(X, Z, X, fill = true))
Which returns Arrays have inco...
iury simoes-sousa
Votes: 0
Answers: 1
How to solve a 4th order differential equation in space and time variables in Julia
I am relatively new to solving differential equations in Julia and thus cant figure out how to solve a higher order ode in 2 independent variables(space and time) and thus would request for assistance...
Rodash
Votes: 0
Answers: 1
Failed to precompile StatsPlots.jl
This might be connected to this or this. However, none of the suggested solutions works for me.
I'm using VSCode with the Julia extension and I run everything in a Jupyter notebook. My first cell look...
David Scholz
Votes: 0
Answers: 1