Questions tagged [julia-studio]

Julia Studio was an IDE for old versions of the Julia programming language

Julia Studio is an abandoned and for the programming language and is based on . Its last release was in 2014.

Julia Studio resources:

25 questions
1
vote
1 answer

What Julia error 'Unknown dependency for GARCH: NLopt' means?

Using Julia Studio (Win XP) and trying to add package DataFrames - how can the following error be resolved? Unknown dependency for GARCH: NLopt (How can I verify that a package was installed) Running dv = DataArray([1,2,3]) says DataArray not…
userJT
  • 11,486
  • 20
  • 77
  • 88
0
votes
0 answers

How to use filter!() for array type in julia?

If there is the F array in Julia as following julia> F 5-element Array{Any,1}: 6 28 30 34 49 and I want to reach this F 1-element Array{Any,1}: Any[6, 28, 30, 34, 49] this code is used F[1]=vcat(F[1],F[2:end]) while true k=2; if…
Soma
  • 743
  • 6
  • 19
0
votes
2 answers

How can I mange the index of the loop in julia?

It is the section of the Genetic algorithm that is coding in Julia. the code was wrote as follow: popc= [individual(rand(0:1,nvar),[]) for i in 1:nc/4,j in 1:2]; for k=1:nc/4 #select firdt parent i1=rand(1:npop); p1=pop[i1]; #select…
Soma
  • 743
  • 6
  • 19
0
votes
1 answer

How can I plot mixed integer problem result?

I solved a linear bi-objective mixed integer problem and I want to plot the results. results include lines and points. for example list=[([0.0; 583000.0], 0), ([190670.0; 149600.0], 0), ([69686.0, 385000.0], 1), ([33296.0, 484000.0], 1),…
Soma
  • 743
  • 6
  • 19
0
votes
1 answer

Julia - unable to install Dates package

After running Pkg.init() and Pkg.Update(), I am still unable to load the Dates package: Using either: Pkg.add("Dates") ErrorException("Dates's requirements can't be satisfied because of the following fixed packages: julia") Or double…
Alexander Ridgers
  • 225
  • 1
  • 3
  • 10
0
votes
1 answer

How do I resolve LoadError while trying to make a png on Windows using Julia Studio and Gadfly?

I'm currently working through this tutorial and I'm having trouble getting the png image to display. This is my program. using DataFrames using Gadfly train_df = readtable("winequality-red.csv", separator=';') _, count =…
John
  • 13,197
  • 7
  • 51
  • 101
0
votes
1 answer

Error in using Julia packages

I am using Julia Studio 0.4.4 in Win 7. After installing TimeData, when I write: using TimeData I get this error: LoadError("C:\\Users\\user\\.julia\\TimeData\\src\\TimeData.jl",14,ErrorException("DataFrame not defined")) If I write: using…
user3510226
  • 185
  • 1
  • 1
  • 9
0
votes
0 answers

Loading Distance package not responding in Julia

In Julia Studio 0.4.4 on Mac OS X 10.9, I am unable to load the Distance package. When I run: julia> using Distance Julia studio terminal do not respond, it never goes back to the prompt. I have tried to reinstall the package as well as to remove…
kahlo
  • 2,314
  • 3
  • 28
  • 37
0
votes
1 answer

Julia studio write() error

I am getting the weirdest error in using the write()function: julia> write(0.1) �8 julia> ������? These are just the commands I'm writing in the console, as you can see. What could be going wrong? Note: I'm using Julia Studio 0.4.4
sodiumnitrate
  • 2,899
  • 6
  • 30
  • 49
-1
votes
1 answer

Julia Studios does not deindent end statements

I wanted to try Julia and thought it would be nice to start of using Julia Studios. For some reason it seems the editor does not indent loops and end-statements correctly. I tried looking in preferences but couldn't find anything to help, neither…
johnblund
  • 402
  • 5
  • 21
1
2