googlepages的使用感受

googlepages的使用感受


google近日开通了googlepages服务 ,提供一个二级域名和100M的免费空间,并有一个简单的在线网 页制作工具,没有HTML知识的人也可以做出漂亮的网站 ,是Google的一个大手笔,近段时间我申请了googlep ages服务,试着做了一个网站,但经过一段时间的试用 ,感觉还有很多不爽的地方:
一是google提供了多种网页模板和框架,但是首页只能用提供 的模板,不能自己发挥完全布置一个自己的结构框架。
二是提供的框架在当今大屏幕显示器盛行的今天,显得特别局促 ,两边都留有很大的空白而不能添加内容。
三是在编辑过程中,时常会出错,我在使用过程中,常常是编辑这个 框里的内容,另一个框里做的链接就会无缘无故地失效。
四是只能编辑一些简单的HTML和文字链接,我在DREAMWE AVER里制作好的表格直接复制到框架里时,表格间距就会变得特 别地大,而且不能调节,显得特别不协调。
五是好多网站统计代码、计数器代码都不能加入,如google
analytics、ITSUN等都不支持。
还有别的地方,无法一一列举,我感觉应该还有许多需要完善的地方
希望GOOGLE能够尽地改良服务,给广大网友一个真正能够自由 发挥的空间。

我的网站地址:

http://bloggerhome.googlepages.com/
帮我解释这个关于LDPC的函数 function [c, newH] = makeParityChk(dSource, H, strategy) % Generate parity check vector bases on LDPC matrix H using sparse LU decomposition % % dSource : Binary source (0/1) % H : LDPC matrix % strategy: Strategy for finding the next non-zero diagonal elements % {0} First : First non-zero found by column search % {1} Mincol : Minimum number of non-zeros in later columns % {2} Minprod: Minimum product of: % - Number of non-zeros its column minus 1 % - Number of non-zeros its row minus 1 % % c : Check bits % % % Copyright Bagawan S. Nugroho, 2007 % http://bsnugroho.googlepages.com % Get the matric dimension [M, N] = size(H); % Set a new matrix F for LU decomposition F = H; % LU matrices L = zeros(M, N - M); U = zeros(M, N - M); % Re-order the M x (N - M) submatrix for i = 1:M % strategy {0 = First; 1 = Mincol; 2 = Minprod} switch strategy % Create diagonally structured matrix using 'First' strategy case {0} % Find non-zero elements (1s) for the diagonal [r, c] = find(F(:, i:end)); % Find non-zero diagonal element candidates rowIndex = find(r == i); % Find the first non-zero column chosenCol = c(rowIndex(1)) + (i - 1); % Create diagonally structured matrix using 'Mincol' strategy case {1} % Find non-zero elements (1s) for the diagonal [r, c] = find(F(:, i:end)); colWeight = sum(F(:, i:end), 1); % Find non-zero diagonal element candidates rowIndex = find(r == i); % Find the minimum column weight [x, ix] = min(colWeight(c(rowIndex))); % Add offset to the chosen row index to match the dimension of the... % original matrix F chosenCol = c(rowIndex(ix)) + (i - 1); % Create
03-14
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值