brew install <formula名> --cask
でインストールしたアプリケーションを最新バーションに更新する方法がわからなかったのでメモ。
下のコマンドを知るまでは各アプリケーションを起動してそれぞれをそれぞれの方法で更新していた。
更新コマンド
perl: /[^u4E00-u9FA5]/ | |
js: match(/[\u4E00-\u9FA5]/) | |
Example: | |
use `<([^u4E00-u9FA5]*<[^u4E00-u9FA5]+>[^u4E00-u9FA5]*)*>` to match `<封爵 河津亭侯→安國鄉侯→向鄉侯→舞陽侯→晉王<追尊>→晉帝<追尊>>` |
import math | |
class DecodingError(Exception): | |
"""Raised if no path ends in the zero state""" | |
pass | |
class TrellisPath: | |
def __init__(self, last_state=0): |
function x = levin(a,b) | |
% function x = levin(a,b) | |
% solves system of complex linear equations toeplitz(a)*x=b | |
% using Levinson's algorithm | |
% a ... first row of positive definite Hermitian Toeplitz matrix | |
% b ... right hand side vector | |
% | |
% Author: Mathias C. Lang, Vienna University of Technology, AUSTRIA | |
% 1997-09 | |
% [email protected] |