Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
ae88ece6
Kaydet (Commit)
ae88ece6
authored
Kas 05, 2010
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge branch 'feature/calc-function-linest-logest'
üst
b0b013c7
31380277
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
13 deletions
+4
-13
interpre.hxx
sc/source/core/inc/interpre.hxx
+3
-12
interpr4.cxx
sc/source/core/tool/interpr4.cxx
+1
-1
interpr5.cxx
sc/source/core/tool/interpr5.cxx
+0
-0
No files found.
sc/source/core/inc/interpre.hxx
Dosyayı görüntüle @
ae88ece6
...
...
@@ -664,7 +664,6 @@ void ScLCM();
void
ScMatValue
();
void
MEMat
(
ScMatrix
*
mM
,
SCSIZE
n
);
void
MFastMult
(
ScMatrix
*
pA
,
ScMatrix
*
pB
,
ScMatrix
*
pR
,
SCSIZE
n
,
SCSIZE
m
,
SCSIZE
l
);
void
ScMatDet
();
void
ScMatInv
();
void
ScMatMult
();
...
...
@@ -677,13 +676,6 @@ void ScSumX2MY2();
void
ScSumX2DY2
();
void
ScSumXMY2
();
void
ScGrowth
();
// multiple Regression: Varianzen der Koeffizienten
BOOL
RGetVariances
(
ScMatrix
*
pV
,
ScMatrix
*
pX
,
SCSIZE
nC
,
SCSIZE
nR
,
BOOL
bSwapColRow
,
BOOL
bZeroConstant
);
void
Calculate
(
ScMatrixRef
&
pResMat
,
ScMatrixRef
&
pE
,
ScMatrixRef
&
pQ
,
ScMatrixRef
&
pV
,
ScMatrixRef
&
pMatX
,
BOOL
bConstant
,
SCSIZE
N
,
SCSIZE
M
,
BYTE
nCase
);
ScMatrixRef
Calculate2
(
const
BOOL
bConstant
,
const
SCSIZE
M
,
const
SCSIZE
N
,
ScMatrixRef
&
pMatX
,
ScMatrixRef
&
pMatY
,
BYTE
nCase
);
bool
Calculate3
(
const
SCSIZE
M
,
ScMatrixRef
&
pQ
);
bool
Calculate4
(
BOOL
_bExp
,
ScMatrixRef
&
pResMat
,
ScMatrixRef
&
pQ
,
BOOL
bConstant
,
SCSIZE
N
,
SCSIZE
M
);
bool
CalculateSkew
(
double
&
fSum
,
double
&
fCount
,
double
&
vSum
,
std
::
vector
<
double
>&
values
);
void
CalculateSlopeIntercept
(
BOOL
bSlope
);
void
CalculateSmallLarge
(
BOOL
bSmall
);
...
...
@@ -695,12 +687,11 @@ bool CalculateTest( BOOL _bTemplin
void
CalculateLookup
(
BOOL
HLookup
);
bool
FillEntry
(
ScQueryEntry
&
rEntry
);
void
CalculateAddSub
(
BOOL
_bSub
);
void
CalculateTrendGrowth
(
BOOL
_bGrowth
);
void
CalulateRGPRKP
(
BOOL
_bRKP
);
void
CalculateTrendGrowth
(
bool
_bGrowth
);
void
CalulateRGPRKP
(
bool
_bRKP
);
void
CalculateSumX2MY2SumX2DY2
(
BOOL
_bSumX2DY2
);
void
CalculateMatrixValue
(
const
ScMatrix
*
pMat
,
SCSIZE
nC
,
SCSIZE
nR
);
bool
CheckMatrix
(
BOOL
_bLOG
,
BOOL
_bTrendGrowth
,
BYTE
&
nCase
,
SCSIZE
&
nCX
,
SCSIZE
&
nCY
,
SCSIZE
&
nRX
,
SCSIZE
&
nRY
,
SCSIZE
&
M
,
SCSIZE
&
N
,
ScMatrixRef
&
pMatX
,
ScMatrixRef
&
pMatY
);
bool
CheckMatrix
(
bool
_bLOG
,
BYTE
&
nCase
,
SCSIZE
&
nCX
,
SCSIZE
&
nCY
,
SCSIZE
&
nRX
,
SCSIZE
&
nRY
,
SCSIZE
&
M
,
SCSIZE
&
N
,
ScMatrixRef
&
pMatX
,
ScMatrixRef
&
pMatY
);
void
ScRGP
();
void
ScRKP
();
void
ScForecast
();
...
...
sc/source/core/tool/interpr4.cxx
Dosyayı görüntüle @
ae88ece6
...
...
@@ -1623,7 +1623,7 @@ bool ScInterpreter::ConvertMatrixParameters()
for
(
USHORT
i
=
1
;
i
<=
nParams
&&
i
<=
sp
;
++
i
)
{
FormulaToken
*
p
=
pStack
[
sp
-
i
];
if
(
p
->
GetOpCode
()
!=
ocPush
)
if
(
p
->
GetOpCode
()
!=
ocPush
&&
p
->
GetOpCode
()
!=
ocMissing
)
{
DBG_ERRORFILE
(
"ConvertMatrixParameters: not a push"
);
}
...
...
sc/source/core/tool/interpr5.cxx
Dosyayı görüntüle @
ae88ece6
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment