- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试开发一个 Android 应用程序,它从文本文件中读取输入并在其上运行算法。我的代码如下:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_alg);
////////////////////////////// main //////////////////////////////
int i, j; //loop counters
int N;
float productin2 = 2;
double[] dly2 = new double[nh2];
double sum2 = 0;
double[] coef = { 0, 0.01309854072, 0.06750108302, 0.1665802151, 0.252820164, 0.252820164, 0.1665802151, 0.06750108302, 0.01309854072, 0 };
double[] hEnvs = { 0.01579775570525054600, 0.01781403140084924000, 0.02007602712902524500, 0.02261170464938222500, 0.02545186237753081800, 0.02863036080004565900, 0.03218435360188533200, 0.03615452170070227600, 0.04058530654558931800, 0.04552513804246406700, 0.05102665129194776400, 0.05714688494379131100, 0.06394745235839295600, 0.07149467489305960700, 0.07985966446974707100, 0.08911834010325860000, 0.09935136024637487900, 0.11064394961563757000, 0.12308559557752539000, 0.13676958518580262000, 0.15179234956408211000, 0.16825257753603512000, 0.18625005525402527000, 0.20588418313000478000, 0.22725211573518173000, 0.25044646466527443000, 0.27555249889375555000, 0.30264477217428859000, 0.33178310303988118000, 0.36300783046335494000, 0.39633426806429845000, 0.43174628288460160000, 0.46918893252356092000, 0.50856010852041422000, 0.54970115646932416000, 0.59238647721601956000, 0.63631216212327169000, 0.68108378322949126000, 0.72620355172417450000, 0.77105718249523736000, 0.81490096727059447000, 0.85684977491951841000, 0.89586697826322947000, 0.93075766895485579000, 0.96016698625948826000, 0.98258597735805331000, 0.99636815747833529000, 0.99976088628954152000, 0.99095686993068455000, 0.96817259381709131000, 0.92976236102904553000, 0.87437894148283268000, 0.80119473425728838000, 0.71020093871482237000, 0.60260667694135717000, 0.48136550222324170000, 0.35186349880678341000, 0.22281151005596159000, 0.10739426873747662000, 0.02474176084283331200 };
double sum = 0;
double[] a_bp = { 1.00000000000000000000, -10.74091648341686200000, 55.71763903406161900000, -184.23130974989306000000, 432.65788400377841000000, -762.10904937747364000000, 1037.22401660394640000000, -1107.35260286319680000000, 931.72411890039439000000, -614.95846638660942000000, 313.60709790142261000000, -119.95451911433545000000, 32.58814368922067200000, -5.64325562968512350000, 0.47198784101260066000, };
double[] b_bp = { 0.00113943092849382010, -0.01068561345428776700, 0.04726053423833388700, -0.12855488242290763000, 0.23410994143071942000, -0.28585601928705551000, 0.20343974889435235000, 0.00000000000000000000, -0.20343974889435235000, 0.28585601928705551000, -0.23410994143071942000, 0.12855488242290763000, -0.04726053423833388700, 0.01068561345428776700, -0.00113943092849382010, };
double[] bina = { 0.00000000000000000000, 0.58778524398803711000, 0.95105654001235962000, 0.95105654001235962000, 0.58778524398803711000, 0.000000000000000, -0.58778524398803711000, -0.95105654001235962000, -0.95105654001235962000, -0.58778524398803711000 };
double[] nina = { 1.00000000000000000000, 0.80901700258255005000, 0.30901700258255005000, -0.30901700258255005000, -0.80901700258255005000, -1.00000000000000000000, -0.80901700258255005000, -0.30901700258255005000, 0.30901700258255005000, 0.80901700258255005000 };
filereader();
j = 9;
while (j < eFRI)
{
for (i = 0; i < 10; i++)
{
Blosi[j + i] = bina[i];
Blosq[j + i] = nina[i];
}
j = j + 10;
}
outputiir[0] = b_bp[0] * savg1[0];
N = M - 1;
for (i = 1; i < N; i++)
{
sum = b_bp[0] * savg1[i];
for (j = i; j >= 1; j--)
{
if (i - j < N && j < M)
sum += b_bp[j] * savg1[i - j] - a_bp[j] * outputiir[i - j];
}/*end of for*/
outputiir[i] = sum;
sum = 0;
}/*end of for*/
/* compute the outputs till nr-1*/
for (i = 0; i < NR; i++) //NR = 1000000-15
{
sum = b_bp[0] * savg1[M - 1 + i];
for (j = 1; j <= M - 1; j++) //M - 1 = 14
sum += b_bp[j] * savg1[M - 1 + i - j] - a_bp[j] * outputiir[M - 1 + i - j];
outputiir[M - 1 + i] = sum;
sum = 0;
}/*end for*/
for (i = 0; i < nums; i++)
savg1[i] = ((float)(outputiir[i]));
for (i = 1; i < Math.floor((double)(nums / eFRI)); i++)
{
for (j = 0; j < eFRI; j++)
{
indx[j] = ((i * eFRI) - 1) + j;
savg1[j] = savg1[j] + savg1[indx[j]];
}
}
for (i = eFRI; i < nums; i++)/*atention think if you can change this num to eFRI*/
savg1[i] = 0;
/***********************product 1 & 2 **************************/
for (i = 0; i < num; i++)
{
Blosq[i + nh1 - 1] = savg1[i] * Blosq[i + nh1 - 1];
Blosi[i + nh1 - 1] = savg1[i] * Blosi[i + nh1 - 1];
}/*end of for*/
/********************FIR Filtering(lowpass) 1 & 2 **************/
DSPF_sp_fir_gen(Blosi, coef, Blosi, nh1, num);/*lowpass FIR filter*/
DSPF_sp_fir_gen(Blosq, coef, Blosq, nh1, num);
for (j = 0; j < num; j++)
{
Blosi[j] = productin2 * Math.sqrt(Blosi[j] * Blosi[j] + Blosq[j] * Blosq[j]);
outputiir[j] = Blosi[j]; /*env = outputiir*/
}/*end of for*/
/********************* match filtring ****************************/
for (j = 0; j < (num / 5); j++)
{
dly2[0] = outputiir[5 * j];
sum2 = dly2[0] * hEnvs[0];
for (i = nh2 - 1; i > 0; i--)
{
sum2 += dly2[i] * hEnvs[i];
dly2[i] = dly2[i - 1];
}/*end of for*/
outputiir[j] = sum2;
}/*end of for*/
/**************************************************************/
int r = 0;
sigenveval();
r = sigfind(envpeakindx);/*output is sig_t: signals occurence time*/
r = sigiden(sig_t, signaltlen, r);/*output is sigs: signals and their types*/
r = sigfsync(r);/*out put is fsigs: the fine synchronization result*/
r = sigtd(r);/*output is td : time difference between master and slaves*/
latlong(r);
r=1;
TextView tv1=(TextView) findViewById(com.example.hanieh.mapapp.R.id.LngText);
tv1.setText(Double.toString(pos[0]));
TextView tv2=(TextView) findViewById(com.example.hanieh.mapapp.R.id.LatText);
tv2.setText(Double.toString(pos[1]));
}
logcat如下:
09-23 14:25:43.485 1921-1927/com.example.hanieh.mapapp W/art: Suspending all threads took: 19.306ms
09-23 14:25:55.031 1921-1927/com.example.hanieh.mapapp W/art: Suspending all threads took: 24.494ms
09-23 14:25:55.517 1921-1927/com.example.hanieh.mapapp W/art: Suspending all threads took: 9.116ms
09-23 14:26:03.621 1921-1921/com.example.hanieh.mapapp I/Choreographer: Skipped 1263 frames! The application may be doing too much work on its main thread.
当我调试它时,我在 logcat 窗口中收到警告I/Choreographer:跳过了 1267 帧!该应用程序可能在其主线程上做了太多工作。但在视觉上,当我在设备上运行该应用程序时,我看不到任何问题。我的问题的答案在这里 The application may be doing too much work on its main thread 我读了它,但我无法理解它。有人可以指导我如何解决此警告并加快申请速度吗?
最佳答案
您应该使用 AsyncTask 来执行这些类型的操作。请浏览以下链接:
http://www.compiletimeerror.com/2013/01/why-and-how-to-use-asynctask.html
在 AsyncTask 的 doInBackground 方法中执行所有文件和数据库操作。您不会遇到异常(exception)情况。
异常的主要原因是Android应用程序的所有进程都是在单个线程(即主UI线程)中完成的。您正在执行的操作需要大量时间才能完成。这会阻塞 UI 线程。因此,您会收到异常或错误。
通过使用异步任务,您的繁重操作将在单独的线程中完成。当您阅读 AsyncTask 的文档时,您将了解到 AsyncTask 的 doInBackground 方法在称为工作线程或后台线程的单独线程中运行。这可以使主 UI 线程保持 Activity 状态并保持响应。因此,请在 AsyncTask 的 doInBackground 方法中执行所有文件、数据库、网络或任何其他时间操作。您不会遇到错误
关于java - 修复 Android 中的跳帧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39659195/
我想做的是让 JTextPane 在 JPanel 中占用尽可能多的空间。对于我使用的 UpdateInfoPanel: public class UpdateInfoPanel extends JP
我在 JPanel 中有一个 JTextArea,我想将其与 JScrollPane 一起使用。我正在使用 GridBagLayout。当我运行它时,框架似乎为 JScrollPane 腾出了空间,但
我想在 xcode 中实现以下功能。 我有一个 View Controller 。在这个 UIViewController 中,我有一个 UITabBar。它们下面是一个 UIView。将 UITab
有谁知道Firebird 2.5有没有类似于SQL中“STUFF”函数的功能? 我有一个包含父用户记录的表,另一个表包含与父相关的子用户记录。我希望能够提取用户拥有的“ROLES”的逗号分隔字符串,而
我想使用 JSON 作为 mirth channel 的输入和输出,例如详细信息保存在数据库中或创建 HL7 消息。 简而言之,输入为 JSON 解析它并输出为任何格式。 最佳答案 var objec
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个以前可能被问过的问题,但我很难找到正确的描述。我希望有人能帮助我。 在下面的代码中,我设置了varprice,我想添加javascript变量accu_id以通过rails在我的数据库中查找记
我有一个简单的 SVG 文件,在 Firefox 中可以正常查看 - 它的一些包装文本使用 foreignObject 包含一些 HTML - 文本包装在 div 中:
所以我正在为学校编写一个 Ruby 程序,如果某个值是 1 或 3,则将 bool 值更改为 true,如果是 0 或 2,则更改为 false。由于我有 Java 背景,所以我认为这段代码应该有效:
我做了什么: 我在这些账户之间创建了 VPC 对等连接 互联网网关也连接到每个 VPC 还配置了路由表(以允许来自双方的流量) 情况1: 当这两个 VPC 在同一个账户中时,我成功测试了从另一个 La
我有一个名为 contacts 的表: user_id contact_id 10294 10295 10294 10293 10293 10294 102
我正在使用 Magento 中的新模板。为避免重复代码,我想为每个产品预览使用相同的子模板。 特别是我做了这样一个展示: $products = Mage::getModel('catalog/pro
“for”是否总是检查协议(protocol)中定义的每个函数中第一个参数的类型? 编辑(改写): 当协议(protocol)方法只有一个参数时,根据该单个参数的类型(直接或任意)找到实现。当协议(p
我想从我的 PHP 代码中调用 JavaScript 函数。我通过使用以下方法实现了这一点: echo ' drawChart($id); '; 这工作正常,但我想从我的 PHP 代码中获取数据,我使
这个问题已经有答案了: Event binding on dynamically created elements? (23 个回答) 已关闭 5 年前。 我有一个动态表单,我想在其中附加一些其他 h
我正在尝试找到一种解决方案,以在 componentDidMount 中的映射项上使用 setState。 我正在使用 GraphQL连同 Gatsby返回许多 data 项目,但要求在特定的 pat
我在 ScrollView 中有一个 View 。只要用户按住该 View ,我想每 80 毫秒调用一次方法。这是我已经实现的: final Runnable vibrate = new Runnab
我用 jni 开发了一个 android 应用程序。我在 GetStringUTFChars 的 dvmDecodeIndirectRef 中得到了一个 dvmabort。我只中止了一次。 为什么会这
当我到达我的 Activity 时,我调用 FragmentPagerAdapter 来处理我的不同选项卡。在我的一个选项卡中,我想显示一个 RecyclerView,但他从未出现过,有了断点,我看到
当我按下 Activity 中的按钮时,会弹出一个 DialogFragment。在对话框 fragment 中,有一个看起来像普通 ListView 的 RecyclerView。 我想要的行为是当
我是一名优秀的程序员,十分优秀!