?? zha.txt
字號:
#include <stdio.h>
#include <malloc.h>
void jsqr(float a[],float b[],float c[],int n);
void mulqr(float a[],float b[],float c[],int n);
void pd(float a[],float b[],int n);
void findr(float x0[],int n,float r0[])
{
float *r,*q,*a;
r=(float*)calloc(n*n,4);
q=(float*)calloc(n*n,4);
a=(float*)calloc(n*n,4);
jsqr(x0,q,r,n);
mulqr(q,r,a,n);
pd(a,r0,n);
return ;
free(r);
free(q);
free(a);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -