Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for hilbert (0.33 sec)

  1. test/fixedbugs/issue6866.go

    // (To generate, in go/types directory: go test -run=Hilbert -H=2 -out="h2.src")
    
    // This program tests arbitrary precision constant arithmetic
    // by generating the constant elements of a Hilbert matrix H,
    // its inverse I, and the product P = H*I. The product should
    // be the identity matrix.
    package main
    
    func main() {
    	if !ok {
    		print()
    		return
    	}
    }
    
    // Hilbert matrix, n = 2
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 02 22:49:47 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/hilbert_test.go

    	println("PASS")
    }
    
    `, n, out)
    	g.hilbert(n)
    	g.inverse(n)
    	g.product(n)
    	g.verify(n)
    	g.printProduct(n)
    	g.binomials(2*n - 1)
    	g.factorials(2*n - 1)
    
    	return g.Bytes()
    }
    
    type gen struct {
    	bytes.Buffer
    }
    
    func (g *gen) p(format string, args ...interface{}) {
    	fmt.Fprintf(&g.Buffer, format, args...)
    }
    
    func (g *gen) hilbert(n int) {
    	g.p(`// Hilbert matrix, n = %d
    const (
    `, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:00:12 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/go/types/hilbert_test.go

    	println("PASS")
    }
    
    `, n, out)
    	g.hilbert(n)
    	g.inverse(n)
    	g.product(n)
    	g.verify(n)
    	g.printProduct(n)
    	g.binomials(2*n - 1)
    	g.factorials(2*n - 1)
    
    	return g.Bytes()
    }
    
    type gen struct {
    	bytes.Buffer
    }
    
    func (g *gen) p(format string, args ...interface{}) {
    	fmt.Fprintf(&g.Buffer, format, args...)
    }
    
    func (g *gen) hilbert(n int) {
    	g.p(`// Hilbert matrix, n = %d
    const (
    `, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/math/big/hilbert_test.go

    		for j := 0; j < a.m; j++ {
    			s += fmt.Sprintf("\t%s", a.at(i, j))
    		}
    		s += "\n"
    	}
    	return s
    }
    
    func doHilbert(t *testing.T, n int) {
    	a := newHilbert(n)
    	b := newInverseHilbert(n)
    	I := newUnit(n)
    	ab := a.mul(b)
    	if !ab.eql(I) {
    		if t == nil {
    			panic("Hilbert failed")
    		}
    		t.Errorf("a   = %s\n", a)
    		t.Errorf("b   = %s\n", b)
    		t.Errorf("a*b = %s\n", ab)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.9K bytes
    - Viewed (0)
  5. docs/de/docs/fastapi-people.md

    ### Gold Sponsoren
    
    {% if sponsors %}
    {% for sponsor in sponsors.gold -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}"></a>
    {% endfor %}
    {% endif %}
    
    ### Silber Sponsoren
    
    {% if sponsors %}
    {% for sponsor in sponsors.silver -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}"></a>
    {% endfor %}
    {% endif %}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top