top of page
Search


Gradient Descent Method with Examples
Gradient descent, or 'Downhill algorithm,' is one of the simplest algorithms for optimization problems. The algorithm searches for the...
Adisorn O.
Mar 30, 20231 min read
Â
Â


MATLAB's sum() function
MATLAB provides a simple but efficient sum( ) function to sum column or row vector, as well as all elements in arrays. Syntax:...
Adisorn O.
Mar 17, 20231 min read
Â
Â


SHAPE OPTIMIZATION OF A 3-BAR TRUSS SYSTEM
We apply a non-linearly constrained optimization to a simple 3-bar truss system for this example. The following MATLAB scripts are...
Adisorn O.
Mar 9, 20231 min read
Â
Â


LINEAR PROGRAMMING USING LINPROG
This example demonstrates using MATLAB's Optimization Toolbox app for linear programming. Objective function: f = 4x + y Design...
Adisorn O.
Mar 9, 20231 min read
Â
Â
IN-LINE VS. ANONYMOUS FUNCTION
Sometimes we must define a short function for using with our main program or inside the user function. The in-line function is made for...
Adisorn O.
Mar 9, 20231 min read
Â
Â


GLOBAL VS. LOCAL VARIABLES
Local variables exist only within their scope—the main program or the user-defined functions. In contrast, global variables exist...
Adisorn O.
Mar 8, 20231 min read
Â
Â


A SUMMARY OF PROGRAM FLOW CONTROL IN MATLAB
This blog summarizes the program's flow control in MATLAB for quick reminders. If...else...end If (condition 1 == true) statements 1...
Adisorn O.
Mar 8, 20231 min read
Â
Â


INTRODUCING DESIGN OPTIMIZATION BLOG
This blog session emphasizes the applications in design optimization, especially in structural mechanics and geotechnical engineering...
Adisorn O.
Mar 6, 20231 min read
Â
Â


Design optimization of two-way post-tensioned concrete slab using simulated annealing algorithm
(PDF) Design optimization of two-way post-tensioned concrete slab using simulated annealing algorithm (researchgate.net) This paper...
Adisorn O.
Feb 20, 20231 min read
Â
Â
bottom of page

