The simplify tag has no wiki summary.
0
votes
1answer
45 views
How to simplify boolean function into two logic gates?
Can anyone help me to simplify this boolean function into two logic gates?
C(out) = AC(in) + BC(in) + AB
0
votes
1answer
25 views
How to convert requirejs script to nomal javascript?
How can I convert a script did based in requirejs to a normal javascript code?
for example:
define("anything",['anything'], function(anything){
//code
});
how it will be in normal javascript ...
0
votes
3answers
67 views
Elegant displaying form content with radio buttons
I've got a HTML form with radio buttons ("Yes", "No") and accordingly to the button's value form slides up or down. Here's js code:
$(document).ready(function () {
...
1
vote
1answer
59 views
Simplifying the regex “ab|a|b”
(How) could the following regex be simplified:
ab|a|b
?
I'm looking for a less redundant one, i.e. with only one a and one b. Is it possible?
Some tries:
a?b? # matches empty string ...
-3
votes
1answer
56 views
Simplify JQuery Codes [closed]
Good Day!
I'd like to ask something . Is there such a way that could shorten these lines of mine in jquery? I mean specially in the if-else part. Thank you!
$("#banner ...
0
votes
0answers
9 views
Tool to simply algebraic expression to minimal and most efficient flops/instructions or approximate?
Say for example I have something like X = A + B * 100 , A = some-other-express, B = some-other expression. Is there any tools to simplify X to a minimal or an some approximation of the lowest number ...
3
votes
2answers
111 views
Expression templates: improving performance in evaluating expressions?
By the expression templates technique, a matrix expression like
D = A*B+sin(C)+3.;
is pretty much equivalent, in terms of computing performance, to a hand-written for loop.
Now, suppose that I ...
0
votes
2answers
50 views
How can I simplify in Matlab?
I want to simplify the following operation, but it yields me an error that says: too many input arguments. Can anybody tell me what am i doing wrong???
>>
syms a b c d e f g h i j k l x y xy
...
1
vote
2answers
57 views
Simplify Expressions with Racket
I have a function that differentiates an equation and prints it as a list to the screen. What I want to make now is a function that takes the expression returned like this one:
'(+ (* x 0) (* 2 1))
...
0
votes
2answers
66 views
How to simplify repeated functions [closed]
I'm new to programming and trying to simplify some jquery/javascript code but I'm not having much success. I tried to adapt the solution found here: jQuery Simplify
...but again, no success.
Here's ...
0
votes
0answers
57 views
Simplify a jquery function in a php while
I try to "put off" my javascript from my PHP while to simplify my source code.
But i have no idea how to do otherwise.
I generate severals percentage animated bars, it works but it 's horrible...
...
0
votes
1answer
35 views
Does CoffeeScript have simplified “and”, “or” operators?
Could it be simplified in CoffeeScript:
redisSETNXReply.toString() == '1' or redisSETNXReply.toString() =='0'
to something like:
redisSETNXReply.toString() == '1' or '0'
?
2
votes
6answers
70 views
simplify javascript if statement where conditions are identical except for variable
I apologize if this is a duplicate question. It's such a use-case question that it seems everyone has their own version.
I'm wondering if this can be simplified:
if ...
0
votes
1answer
153 views
How can I make a Java method for simplifying a fraction?
I have written a Fraction class, and am having trouble with the simplification.
When I make the Fraction object, everything works fine, i just think my logic is messy with the simplification.
(num ...
0
votes
2answers
46 views
mathematica simplify denominator
In this algebraic expression, how to force Mathematica to calculate first a common
denominator and then to simplify:
(32768 Sqrt[\[Pi]] Va)/((7/b^2 + 2/mua^2)^(3/2) mua^3) +
(32 Sqrt[\[Pi]] ...
0
votes
2answers
65 views
Is it possible to let SPSS only display values that are significant in the Output?
Is it possible to display only significant P-values and/or R-values in the output of SPSS?
This would simplify output significantly and reduces the tables to display only the relevant parts (the ones ...
-5
votes
1answer
62 views
Simplifying Code in Java [closed]
I have to shorten the main of this code for my programming class into 1 line and I am having one hard time figuring it out. Any help would be nice.
public class ShortestCode
{
public static void ...
0
votes
1answer
93 views
How can I simplify this expression with trigonometric in Maple?
cot(5*Pi*(1/22))+4*sin(2*Pi*(1/11))
can be simplify to sqrt(11),I tried to use simplify and combine, but I haven't been able to get that result with maple, why?
-1
votes
3answers
61 views
How can I avoid the repetetive code in this jQuery code? ANSWERED
Hello I am making a site and this code lets me have several pages in 1 .html file. Can the iterative-ness of this code be avoided? Can it be simplified?
answered
0
votes
1answer
71 views
How to prove the identity of the following Boolean equations?
Using boolean manipulation, how could I prove these two sides are equal? For number one, I was considering manipulating both sides until they match. I can't seem to manipulate it correctly though.
...
3
votes
1answer
145 views
Automatically simplifying/refactoring Python code (e.g. for loops -> list comprehension)?
In Python, I really enjoy how concise an implementation can be when using list comprehension. I love to do concise list comprehensions this:
myList = [1, 5, 11, 20, 30, 35] #input data
bigNumbers = ...
0
votes
0answers
10 views
Dynamic[ ] function Vs simplification
I have the following problem:
Let's consider two functions such as:
Avz[\[Theta]z_,
dz_] := {{Cos[\[Theta]z], -Sin[\[Theta]z], 0, 0}, {Sin[\[Theta]z],
Cos[\[Theta]z], 0, 0}, {0, 0, 1, dz}, ...
1
vote
2answers
41 views
Grouping selectors into one category with jQuery
I am going to have 20 "groups" like these:
$("#checkbox-apple").click(function(){
$("#graphic-apple").toggle();
})
$("#checkbox-orange").click(function(){
$("#graphic-orange").toggle();
})
...
0
votes
1answer
28 views
How can I simplify this bit of jquery? An array of some sort with two different selectors in each click function?
To explain what this does>> each click function reacts to a click of an element inside a logo carousel and creates a pop up outside the carousel explaining what the element/logo is...
Just getting ...
0
votes
1answer
355 views
What C++ library can i use to create and simplify Bezier curves
In a program I have a polyline that is a set of points. I need to create Bezier curve from it and then simplify it using some threshold value.
Are there any C++ libraries that can be helpful for that ...
1
vote
2answers
52 views
Shift dimensions of a vec3
Question
I want to shift the dimensions x, y and z of a three dimensional vector vec3 by a number n.
vec3 shift(int n, vec3 vector);
How can I improve my algorithm to get the best performance and ...
0
votes
4answers
120 views
jQuery multiple if statements based on a variable value simplify?
I've built a changing banner for some magazine issues, it's all working exactly as I want but I'm wondering if there's a better option than all the if statements I'm using to check 'issueTotal', this ...
0
votes
2answers
41 views
Simplifying Query String by re-using the derived fields column names in MYSQL
can we still simplify this query by using the derived column to be an input of another procedure
$query = "SELECT table1.id,
COUNT(DISTINCT arr1.element) AS Arr1,
COUNT(DISTINCT ...
0
votes
1answer
88 views
jquery better way to minimize command script
I have this key commands script that I include every time I want user to be able to use their keyboard to do shortcuts. But I would like to know if there was a way to minimize it or simplify, because ...
1
vote
4answers
79 views
Mouseenter / Mouseleave Simplifying jQuery
I am building a website for a company promotion and there are 24 map shape "hot spots" on the page that open 24 separate divs. Not my design, but I'm not high enough up to argue my case, so I am going ...
2
votes
1answer
67 views
Can This jQuery Dropdown Script be Simplified?
I have two scripts, that I have created. One which is for the desktop multi-level dropdown navigation, and the second which is for when it goes responsive. Is there a way to simplify/compress this ...
0
votes
4answers
59 views
Simplifying Lists [closed]
How Can This Code Be Simplified? That is the question.
stat_keys.append(self.request.get("stat_one"))
stat_keys.append(self.request.get("stat_two"))
...
0
votes
1answer
86 views
MySQL: SELECT and COUNT in same query
I have these two tables:
CITY TABLE
CLUB TABLE
What I'm trying to do, is to select with the same query all cities that contain published clubs (published field set to 1) and the total of clubs ...
2
votes
1answer
281 views
How do I simplify ugly nested if else statements?
I am new to programming in general and I find myself depending too much on conditional statements. I find them similar to my train of thought when coding which makes them easy to implement.
Below I ...
1
vote
3answers
231 views
Sympy: Simplifying square roots of squares
Sympy does not seem to be able to simplify an expression where the square root of a square of a variable is involved:
In [28]: a = x**2
In [29]: b = a**(1/2)
In [30]: b
Out[30]:
0.5
⎛ 2⎞
⎝x ⎠ ...
1
vote
2answers
236 views
Simplifying selectionsort and mergesort
I have managed to implement insertionsort and quicksort in a couple of lines, but selectionsort and mergesort still give me headaches ;)
selectionsort [] = []
selectionsort (x:xs) =
let ...
0
votes
1answer
68 views
Expression Programming
I have built a full working calculator that evaluates any expression and graphs it. I have also built a Symbolic Differentiator that correctly differentiates the formula w.r.t. x but im a bit lost for ...
1
vote
3answers
37 views
How to rewrite it more efficiently (linq with split)?
here is the problem:
I have a column with the topics in the format: "boston | new york | chicago". The names can be different and number of the topics can vary in the records.
What I need to come up ...
0
votes
0answers
53 views
Is it possible to parse XML without using an if statement for each element check?
So basically I've created a XML Parser, but for each element I have an if statement to check if it's in that element. I had a very similar type of set up to allocate memory for storing the information ...
0
votes
3answers
65 views
jQuery Simplify
I am writing some code for a website that uses 4 list items to show/hide 4 different divs at a different place on the page.
Here is a rough example of what I am doing:
<ul>
<li ...
0
votes
1answer
58 views
Any way to simplify PHP constructor arguments?
When I want to pass values into a PHP constructor I have to go:
class Rump {
private $var1;
private $var2;
private $var3;
public function __construct($var1, $var2, $var3) {
...
1
vote
0answers
158 views
How to do simplify and normalize logic expression using clojure.core.logic?
all
I got something like this:
(x < 1 and y < 7) and (x == 0 and y < 5)
I want something like this:
x == 0 and y < 5
I'm new to clojure.
Any idea?
thanks!
2
votes
1answer
119 views
MySQL Simplify This Query?
I've been writing MySQL queries for a long time, but I totally feel like a newbie when it comes to this and I just can't seem to figure out how to simplify this query. Basically I'm just trying to ...
1
vote
1answer
107 views
How to simplify polynomials in sqrt() to its absolute value of factor in maxima?
sqrt(a^2+2*a+1) can be easily rewritten as |a+1|. I would like to do this in maxima, however cannot make it work. Although sqrt(a^2) is automatically simplified to |a|, sqrt(a^2+2*a+1) is not. And ...
0
votes
3answers
91 views
SQL query simplification
select model from (
select price, model from pc where price = (select max(price) from pc)
union
select price, model from laptop where price = (select max(price) from laptop)
union
...
2
votes
2answers
135 views
Simplifying Javascript when having similar functions [closed]
I've finally pieced together some code that works for my question here. However, it appears pretty long as I've created separate functions for when a page with a certain hash is refreshed and when ...
0
votes
1answer
1k views
How to simplify Boolean exression with XOR?
I want to simplify a boolean Expression.
The Expression is something like this
X1 xor (X2 || X3 && X4 || x5)
How do I simplify this expression using rules of Boolean Algebra.
Moreover I ...
0
votes
0answers
95 views
JavaScript: Repeated code vs. extra functions when code length is same
After updating my code based on answers to this previous question, I came up with the following solution:
var Coder = (function() {
var controlWords = [
['ONE','OO'],
...
0
votes
0answers
145 views
Mathematica simplify does not detect that two expressions are equivalent [closed]
The following code produces two expressions that are clearly equal, but I cannot get Mathematica to agree. (sorry, I don't have image posting privileges yet). The last two outputs should give zero, ...
2
votes
2answers
127 views
Simplify code in Java
I have a Java method which has to execute a block of code many times:
// Obtengo los 7 bits de direccion
clockStateIndex = dataStateIndex;
for(int bit = 7; bit ...





