sagar bodkhe
Followers: 0 Following: 0
Statistica
RANK
N/A
of 295.448
REPUTAZIONE
N/A
CONTRIBUTI
0 Domande
0 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
0
RANK
3.350 of 20.227
REPUTAZIONE
457
VALUTAZIONE MEDIA
4.30
CONTRIBUTI
6 File
DOWNLOAD
41
ALL TIME DOWNLOAD
4060
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Inviato
Shear Force, Bending Moment and deflection Plotting tool
Plots SF, BM and deflection for simply supported statically determinate beams.
circa 4 anni fa | 13 download |
Inviato
FEM With MATLAB: Examples 1 to 5
Zip file contains live script files for examples 1 to 5 explain in video series FEM With MATLAB on YouTube.
oltre 4 anni fa | 9 download |
Inviato
Hilbert Curve Plot in MATLAB
This function plots and animates Hilbert curve of order N>=2.
oltre 4 anni fa | 4 download |
Risolto
Read a column of numbers and interpolate missing data
Given an input cell array of strings s, pick out the second column and turn it into a row vector of data. Missing data will be i...
oltre 4 anni fa
Risolto
Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...
oltre 4 anni fa
Inviato
Least Square method to solve ODE (Example 02)
Example02 in the lecture series on FEM with MATLAB
oltre 4 anni fa | 1 download |
Inviato
Least Square method to solve ODE (Example 01)
Example01 in the lecture series on FEM with MATLAB
oltre 4 anni fa | 1 download |
Risolto
Project Euler: Problem 2, Sum of even Fibonacci
Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 te...
oltre 4 anni fa
Risolto
Project Euler: Problem 1, Multiples of 3 and 5
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23...
oltre 4 anni fa
Inviato
FEA of 1D Bar using three node element
Implementation of 1D Bar FEA Algorithm with visualization of displacement and stress contours.
oltre 5 anni fa | 6 download |
Risolto
Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...
oltre 5 anni fa
Risolto
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
oltre 6 anni fa
Risolto
Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of <http://en.wikipedia.org/wiki/Pascals_t...
oltre 6 anni fa
Risolto
Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...
oltre 6 anni fa
Risolto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
oltre 6 anni fa
Risolto
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
oltre 6 anni fa
Risolto
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
oltre 6 anni fa
Risolto
Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...
oltre 6 anni fa
Risolto
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
oltre 6 anni fa
Risolto
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
oltre 6 anni fa
Risolto
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
oltre 6 anni fa