⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Capstone Support
All Projects
Capstone Support
Overview
Activity
News
Wiki
Repository
Download (448 Bytes)
Statistics
| Revision:
root
/
OptimizingMATLABCode
/
Truss
/
localStiffness.m
@ 10
View
History
Annotate
function
k
=
localStiffness
(
A
,
E
,
l
,
t
)
%LOCALSTIFFNESS
% K = LOCALSTIFFNESS(A,E,L,T)
% Copyright 2015 The MathWorks, Inc.
% This function was generated by the Symbolic Math Toolbox version 6.0.
% 31-Dec-2013 10:22:19
t2
=
cos
(
t
);
t3
=
1.0
.
/
l
;
t4
=
t2
.^
2
;
t5
=
A
.*
E
.*
t3
.*
t4
;
t6
=
sin
(
t
);
t7
=
A
.*
E
.*
t2
.*
t3
.*
t6
;
t8
=
t6
.^
2
;
t9
=
A
.*
E
.*
t3
.*
t8
;
k
=
reshape
([
t5
,
t7
,
-
t5
,
-
t7
,
t7
,
t9
,
-
t7
,
-
t9
,
-
t5
,
-
t7
,
t5
,
t7
,
-
t7
,
-
t9
,
t7
,
t9
],[
4
,
4
]);
« Previous
1
2
3
4
5
6
…
12
Next »
(4-4/12)
Loading...