144 questions
-1
votes
1
answer
58
views
Placing fitted curve as overlay to a histogram in an array of figures - Python Matplotlib
I am trying to add the line of a Gaussian fit to a histogram of data I have. I have set up an array of 3 plots in a row, the first two are images, the last is a histogram derived from the data, for ...
1
vote
0
answers
564
views
Plugin 'Fig' (version 2.0.0) was explicitly marked as incompatible with the current version of the IDE
I tried to uninstall Fig plugin from WebStorm many times, but each time I open my IDE this pop up comes back. How can I get rid of it?
Additionally, the following error message pops in my IDE ...
-1
votes
1
answer
141
views
Extract values from a fig file?
Given the fig file ( for example https://file.io/6Ud5sALJHi6e) how can I turn it into a ".mat" file ?
2
votes
0
answers
82
views
How to remove the "autocomlete" option from the top of the suggestions list?
Using Fig on my work macbook, and I'm trying to figure out how to disable one specific feature of the application. 90% of the time when I hit Tab, fig just copies the selected command into the ...
-1
votes
1
answer
581
views
Open saved matlab .fig as specific figure number
For my workflow, I am continually updating a set of figures that provide information on the current status of a remotely operated underwater glider. I have these figures arranged on my desktop so I ...
-1
votes
1
answer
999
views
Showing two figures using matplotlib problem
I am trying to depict two figures simultaneously in two different plots. I am getting though only one figure (the first one in particular).
import numpy as np
import pandas as pd
import matplotlib....
0
votes
1
answer
225
views
Installing fig2pdf on macOS
I am trying to install fig2pdf library on my macbook, which uses macOS Catalina. The idea is to convert the fig file created by xfig to pdf with the Latex operations. I downloaded the relevant linux ...
1
vote
1
answer
237
views
Mercurial/Fig commands access denied
Unable to access any hg commands, getting following error:
abort: repository requires features unknown to this Mercurial: citc exp-remotefilelog-repo-req-1 fig narrowhg-experimental srcfs_manifestlog!...
0
votes
0
answers
223
views
Fig caption doesn't change when i click on other images
When i click on different images the fig caption says the same thing, i am trying to change it so when i click on different images, the fig caption changes.
I have attempted to change it and have ...
0
votes
1
answer
272
views
How can I check App quit in the facebook instant games?
I want to call my custom callback when player out of the game. In the docs I found only FBInstant.quit(); method, but I need an exit event. Does Facebook have this feature?
0
votes
1
answer
375
views
Facebook Instant Gaming Matchmaking blocked on "The player is not currently eligible to match."
I have setup the matchmaking code and actually got it working 3 times where it searched, waited, and then found a match (my other account also set to search), without any problems.
Then all of a ...
2
votes
2
answers
70
views
How do I adjust subplots from a .fig file in Matlab
I have a .fig file with 9 subplots, arranged 3 by 3. Now I want to add labels with I have written in plotlabels(i) to subplot i, on point (xcoordinates(i),0.01). I try this
plotlabels = ['A','B','C','...
1
vote
0
answers
216
views
using export_fig with Matlab2016b
I'm trying to use export_fig (latest version altmany-export_fig-5ad44c4) with Matlab2016b (Windows10, 64 bit, gs9.20). Settings of my graphics card are given below.
plot(cos(linspace(0, 7, 1000)));
...
0
votes
0
answers
291
views
How to make an executable file on matlab and run on raspberry pi 3B [duplicate]
I know how to write code on matlab but I'm very beginner for raspberry pi 3.
I want to write a code on matlab and run on raspberry pi.
I wrote this code and will try on raspberry pi.
I tried this ...
1
vote
1
answer
3k
views
Unable to use variable substitution in docker-compose
I use a mac to run docker and hence I am dependent on boot2docker or docker-machine . My application running in the container needs the docker host's ip.
I saw that the variable substitution feature ...
2
votes
1
answer
1k
views
Docker compose environment variables specified with env_file parameter not working inside the dockerfile
This is a snippet of my docker-compose.yml file which I'm running with docker-compose build percona_dev.
percona_dev:
build: docker/percona
dockerfile: percona-dev
env_file: docker.env
I've ...
0
votes
2
answers
2k
views
Docker-compose running multiple scripts
I'm using docker-compose and a yml file to start up a container. There are two scripts in the package.json I want to call:
"dev-start": "nodemon src/index.js",
"dev-migrate": "db-migrate --migrations-...
8
votes
2
answers
3k
views
Docker Compose with one Terminating Container
I'm having a docker compose setup of a database container, an application container and one container which pre-loads the database with necessary data.
I want to start all of the containers together ...
4
votes
3
answers
5k
views
nginx and php-fpm in Docker
I am in the process of Dockerising my webserver/php workflow.
But because I am on Windows, I need to use a virtual machine. I chose boot2docker which is a Tiny Core Linux running in Virtualbox and ...
1
vote
1
answer
684
views
Using docker-compose (formerly fig) to link a cron image
I'm runing a simple rails app in docker using docker-compose (formerly fig) like this:
docker-compose.yml
db:
image: postgres
volumes:
- pgdata:/var/lib/postgresql/data
web:
build: .
...
4
votes
1
answer
4k
views
Docker: Nginx & PHP Container: no such file or directory
I want to play around with docker so I created my own 2 container, nginx and php. Both container are build successfully and are published on docker hub. After that I created a fig.yml in my projects ...
16
votes
1
answer
15k
views
Debug django app running inside docker image, using pycharm debugger
My app is running inside a docker image (My development team never install software in their machines, only the docker images have the dependencies).
I Need to debug something using pycharm debugger, ...
1
vote
2
answers
2k
views
Docker Compose: Exposing Environment Variables to linked service
I'm playing around with Docker Compose to make a container running a Rails App with a Oracle backend.
Dockerfile and docker-compose.yml
This works great until my Docker container tries to install ...
9
votes
2
answers
12k
views
Understanding ports and links in docker compose
From my understanding of docker compose / fig, creating a link between two services/images is one main reason if you do not want to exposes ports to others.
like here db does not expose any ports and ...
4
votes
3
answers
12k
views
How to set/get the project name in docker-compose.yml
I'm trying to either set a docker-compose project name, or to be able to reference it within my config file. Is any of these possible?
The reason I'm asking is that I'm following this tutorial so I ...