Questions tagged [mixed]
259 questions
1
vote
2 answers
Sounding: mixed layer CAPE calculation
Metpy provides a function to calculate surface based CAPE (metpy.calc.surface_based_cape_cin) or starting pressure based CAPE (metpy.calc.cape_cin). See: https://unidata.github.io/MetPy/latest/api/generated/metpy.calc.html#module-metpy.calc
But is…

F.Debal
- 13
- 2
1
vote
6 answers
Extract Numbers from Array mixed with strings - Javascript
I have an array from strings and numbers. I need to sort the numbers or better to extract only the numbers in another array. Here is the example:
const myArr = ['Prihodi 23456 danaci 34 razhodi 23455 I drugi.']
I need to make it like this
const…

Simba
- 303
- 1
- 4
- 17
1
vote
2 answers
PHP TypeError: Parameter must be an instance of lib\util\mixed, string given
In my PHP file I have created a function with a parameter which can be of any type. Because of this, I declared this parameter as mixed. It seems the mixed type is linked to the folder location where the class is headed; lib\util. The error says …

Klyner
- 3,983
- 4
- 26
- 50
1
vote
0 answers
How can I read the body and download the attached file/s from Gmail with Python2.7?
I'm trying to read the body of my inbox folder on my Email and, if there is an attachment, download it. I've reached to read the body of the received mails, but only if there isn't any attachment on it.
Now I've reached to read all body messages of…

Krakenudo
- 182
- 1
- 17
1
vote
1 answer
flow: cast mixed type to an array of shape
I need to cast a mixed type to a shaped array in flow. Tryflow link.
type aShapedArray = Array<{a:string}>;
//externally defined type
const transform = ():mixed => [{a: 'hello'}];
const b = transform();
if (Array.isArray(b)) {
const a:…

Diana Suvorova
- 1,104
- 1
- 10
- 10
1
vote
3 answers
Visual Studio 2005 VB debugging with c++ dll - Mixed Language debugging
I have a vb project which calls functions in a dll.
The dll is created in a separate vs project (portaudio), which is written in c.
The dll c project compiles clean and builds the required dll, which I am currently dropping in c:\windows\system to…

David Shields
- 596
- 1
- 12
- 34
1
vote
1 answer
Pandas: Coloumn with mixed datatype; how to find the exceptions
I have a large dataframe, and when reading it, it gives me this message:
DtypeWarning: Columns (0,8) have mixed types. Specify dtype upon import or set low_memory=False.
It is supposed to be a column of floats, but I suspect a few strings snuck in…

Jonatan Pallesen
- 135
- 3
- 9
1
vote
0 answers
File not found after import a swift lib by cocoaPod in objective - c project
I am working on an Objective-C/Swift mixed project(created by Objective-c) , and today i'm trying to add a new swift lib by cocoaPod , into my Objective-C project.
here's the code in my podfile :
platform :ios, '9.0'
use_frameworks!
target 'lxd'…

Neko
- 581
- 1
- 9
- 24
1
vote
1 answer
How to extract the p values from mixedCor {psych} correlation in R
Hi I am using mixedCor from package psych to analyse mixed data.
Does any have experience working with this package? Is it possible to set the significance level and how can I plot the results?
library(psych)
# I have data set consist of continues…

Kingindanord
- 1,754
- 2
- 19
- 48
1
vote
2 answers
dtd and mixed content
Does someone know way a mixet content element (in dtd) there is a need to add the "*" at the end?
For example:
I'm reffering to the case where I don't want to repeat anything again... I just want to…

amiad21
- 11
- 3
1
vote
0 answers
error LNK2019: unresolved external symbol _isSumLess referenced in function _main
I keep getting the : error LNK2019: unresolved external symbol _isSumLess referenced in function _main
I cant seem to link these two together and I don't see whats going on, Ive tried using the #undef main as said in other threads but nothing is…

Ryan
- 433
- 3
- 8
- 14
1
vote
1 answer
IE 8 Mixed security content error for HTTPS
I have a web application (.NET 2.0 coded in C#) that displays pages both to logged in users and the general public. When a user logs in, the protocol is switched to HTTPS. The images are being displayed by a CSS file residing in a virtual directory…

Pritika
- 101
- 1
- 3
- 11
1
vote
2 answers
mixed dataframe of list of character vectors into uniform dataframe
I am trying to break up strings as columns using the stringr package.
> df <- dput(head(facs,3))
structure(list(geo_accession = structure(1:3, .Names = c("V2",
"V3", "V4"), .Label = c("GSM1494875", "GSM1494877", "GSM1494879",
"GSM1494881",…

seraphim711
- 137
- 2
- 11
1
vote
0 answers
Longitudinal ordinal categorical data
I'm working with longitudinal data and I'm expected to use mixed effects logistic regression model. And some of my fixed variables are categoricas, but in addition are ordinal.
The doubts that have been brought, if there would be problems in…

Cleber Iack
- 63
- 1
- 7
1
vote
2 answers
How get to simplify a symbolic and numeric mixed expression in Matlab
My finally result is:
(12*u)/5 + (12*4^(3/2))/13 - 1484/34
How to simplify this phrase to: 2.4000u - 36.2624 ?
and how to find u automatically? (u = 15.1093)

user3745249
- 37
- 5