Questions tagged [synthetic]
98 questions
0
votes
2 answers
Python 3.4: How do I assign variables to operators?
I'm trying to create a quick program that'll do synthetic division for polynomials to the 4th degree, but when I try and execute my code, it'll tell me R*A: Can't assign to operator.
I assume that means it can't do the operation of multiplication,…

Oberst Ryan
- 13
- 1
0
votes
1 answer
Generating Data Set in Matlab
I wanted to ask how to generate a data set in Matlab. I need it to test Feature Selection Algorithms on high dimensional data... The data set should be synthetic, multivariate and contain INTERACTING features.
Synthetic data sets like the MONKS…

user3659752
- 1
- 1
0
votes
1 answer
synthetic static fields in java with type "java.lang.Class"
I saw some synthetic fields in class org.jfree.data.time.RegularTimePeriod, and have no ideas what they are and are for. I use this code to find them out:
for (Field f : RegularTimePeriod.class.getDeclaredFields())
if (f.isSynthetic())…
0
votes
1 answer
Converting from synthetic instructions to assembly directives using .word
I was wondering how to take a line of Assembly code written in synthetic instructions and converting it by hand into .word assembly directives. For instance how do you go from something simple like
add %i0, %i0, %i0
to
.word 0xB0060018
A…

Dillon Burton
- 363
- 6
- 16
-1
votes
0 answers
Is it possible to access DOM under canvas?
I'm working with Dynatrace synthetic, and came across the requirement where I wanted to monitor transaction flow remote desktop web client.
The flow comprises of click on "Remote Desktop", wait for desktop to launch it and launch the Microsoft Edge…

user3046893
- 21
- 4
-1
votes
1 answer
How to disable accuracy check in BMC Synthetic Transaction Monitoring 10.5
I need to disable the Accuracy check only on every execution plan configured.
The others check (Performance, Availability Errors, Execution Errors) must be active.
Could anyone help me?

Ema
- 13
- 7
-2
votes
2 answers
generate synthetic data 2d x t x v using matlab
i am trying to generate/simulate a set of synthetic/ simulated data set to generate a synthetic blood flow image in matlab. but i dont know how or where to starts from...
i know i should use the mesh function but how do i make it so it could be in…

mizzue
- 25
- 1
- 5
-3
votes
1 answer
How to create synthetic customer data in python
I have some customer data with me -
Name | Age | Gender | Phone Number | Email Id |
abc. | 25 | M. | 234 567 890 | example.com|
There are 60k rows of data like this and multiple tables. How can I make synthetic data for this dataset…

Seeker90
- 785
- 4
- 17
- 37