Questions tagged [mixed]
259 questions
0
votes
2 answers
Ignore non-number values in a list and find the sum recursive method
I need to create a recursive method in LISP that takes the numbers in a list and finds the sum. Anything in the list that is not a number is skipped (For example, if the list contains "Cheese 12 Dog 8 Shoe 5", the output would be 25).
Right now my…

user2984498
- 3
- 1
0
votes
2 answers
Calculator mixed numbers
I'm a java beginner trying to make a calculator that can accept mixed numbers and fractions, but rather than calculating the values it's just combining the two. (ex.1 + 1/2
The answer is 11/2
)` import java.util.Scanner;
public class Calculator…

user2896734
- 1
- 2
0
votes
3 answers
Is it possible to set up a mixed architecture Cluster?
I have an x86-64 computer running Linux that I would like to supplement with other non-x86-64 Linux machines.
Is it possible to somehow benefit from the computational power of another machine without it being the same architecture?
As a second…

Alexander Trauzzi
- 7,277
- 13
- 68
- 112
0
votes
1 answer
Python - Searcing MixedCase with regex
I wonder if someone could help me solving this problem, I've tried this 2 regex but no success. I wonder if I'm doing wrong anywhere in the expression?
string[1] = "MixEdCasE"
string[2] = "MiXeD CaSE" …

Natsume
- 881
- 3
- 15
- 22
0
votes
0 answers
How can I find out if I caused a mixed content warning?
I am trying to find and log any instances where I create a mixed content warning on someone's browser. Is there a way I can programmatically inspect for these security warnings? I'll take any hack I can get, including browser specific ones. I need…

telaviv
- 406
- 1
- 7
- 14
0
votes
1 answer
0
votes
2 answers
How to mix 2 columns in css3 webkit?
I'm trying to use column in css3 to divide the content newspaper. The problem is I can't mix 2 columns of 3 columns by h1.
Here is image I want :
I want it to support only -webkit- only. Also you can change the content to group of
and
…

Kannika
- 2,538
- 2
- 27
- 38
0
votes
1 answer
Mixing JOINED and SINGLE_TABLE Inheritence using Annotations
I have looked on the forum for similar questions but haven't found anything that addresses what I'm looking for (at least what i can tell).
I have a situation where we have multiple clients with multiple request types each. What I was trying to…

mark
- 41
- 1
- 9
0
votes
1 answer
Merge sort: sorting a list with mixed elements
I'm writing a merge sort in Scheme. I have a merge sort definition, a splitter which splits the list, and a merge which merges the list.
(define mymergesort
(lambda (alist)
(if (null? (cdr alist)) alist
(let ((splits (splitter…

kud0h
- 35
- 6
0
votes
1 answer
Is there a way to input a covariance matrix (or something like that) into lme4 in R?
I have a very large data set that I extract from a data warehouse. To download the data set to the box where I want to run lme4 takes a long time. I would like to know if I could process the data into a covariance matrix, download that data (which…
0
votes
1 answer
how to split a vector with mixed variables into two separate vectors in R
I extracted a mixed variable which includes both numeric and string values from a data file using strsplit function. I ended up with a variable just as seen below:
> sample3
[[1]]
[1] "1200" "A"
[[2]]
[1] "1193" "A"
[[3]]
[1] "1117" "B" …

John Smith
- 110
- 2
- 11
0
votes
0 answers
Calculating HPD-interval from lme(nlme-package)
I wondered if anyone know how to create a mcmc sampling and calculate the HPD interval for a linear mixed model made by lme from the nlme package. I am familiar with doing this with the lme4 package, but I need the temporal…

ego_
- 1,409
- 6
- 21
- 31
0
votes
1 answer
Parse through array of objects
I am getting the following array of objects as response when printing a variable called $userStatistic.
OnApp_User_BillingStatistics Object
(
[_tagRoot] => vm_stat
[_resource] => vm_stats
…

Happy Coder
- 4,255
- 13
- 75
- 152
0
votes
1 answer
ColdFusion special unicode characters in the content returned by cfhttp
In the content retrieved with ColdFusion http object there are some characters that are returned as question marks; namely these are roman numerals (like Ⅱ) which are displayed without problems when I visit the same page with a browser.
The server…

Kirill G.
- 910
- 1
- 14
- 24
-1
votes
1 answer
Mixed types in XSD
How to verify XML element with mixed content? Element can contain string "Undefined" or float values.
I think it can be done thru string Restriction with pattern, but maybe a better way exists?

Roman Kuzyk
- 241
- 3
- 15