Andrea La Spina - MATLAB Central
photo

Andrea La Spina


Columbia University

2019년부터 활동

Followers: 0   Following: 0

메시지

통계

All
File ExchangeCodyFrom 08/19 to 03/25Use left and right arrows to move selectionFrom 08/19Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
File Exchange

14 파일

Cody

0 문제
13 답안

순위
N/A
of 297,560

평판
N/A

참여
0 질문
0 답변

답변 채택
0.00%

획득한 표
0

순위
1,071 of 20,456

평판
1,750

평균 평점
4.40

참여
14 파일

다운로드 수
76

ALL TIME 다운로드 수
13441

순위
30,321
of 159,148

참여
0 문제
13 답안

점수
150

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • First Review
  • Personal Best Downloads Level 3
  • 5-Star Galaxy Level 5
  • First Submission
  • Solver

배지 보기

Feeds

보기 기준

제출됨


Export figure for LaTeX documents
High-precision tool to export a figure to pdf matching the font size and the text width of a LaTeX document.

2년 초과 전 | 다운로드 수: 2 |

0.0 / 5
Thumbnail

제출됨


Symbolic function, gradient and divergence
Easy definition of arbitrarily sized functions and effective computation of gradient and divergence operators.

3년 초과 전 | 다운로드 수: 1 |

5.0 / 5
Thumbnail

제출됨


2D Unsteady Navier-Stokes
Solution of 2D Navier-Stokes equations

3년 초과 전 | 다운로드 수: 6 |

5.0 / 5
Thumbnail

제출됨


2D Steady Navier-Stokes
Solution of 2D Navier-Stokes equations

3년 초과 전 | 다운로드 수: 8 |

4.6 / 5
Thumbnail

제출됨


2D Unsteady convection-diffusion-reaction problem
2D scalar equation of a convection-diffusion-reaction problem

3년 초과 전 | 다운로드 수: 5 |

4.7 / 5
Thumbnail

제출됨


2D Unsteady convection-diffusion problem
2D scalar equation of a convection-diffusion problem

3년 초과 전 | 다운로드 수: 4 |

5.0 / 5
Thumbnail

제출됨


Unsteady convection-diffusion-reaction problem
1D scalar equation of a convection-diffusion-reaction problem with piecewise linear approximation

3년 초과 전 | 다운로드 수: 4 |

5.0 / 5
Thumbnail

제출됨


Steady transport problems
1D scalar equation of convective-diffusion transport with piecewise linear approximation

3년 초과 전 | 다운로드 수: 2 |

0.0 / 5
Thumbnail

제출됨


1-D wave propagation in microstructured materials
This script performs a numerical simulation of the wave propagation in microstructured materials.

3년 초과 전 | 다운로드 수: 2 |

1.0 / 5
Thumbnail

제출됨


Euler-Bernoulli VS Timoshenko beam
Construction of the stiffness and the mass matrix for the Euler-Bernoulli and the Timoshenko beam

3년 초과 전 | 다운로드 수: 9 |

2.4 / 5
Thumbnail

제출됨


Armstrong-Frederick cyclic hardening plasticity
This is an easy and interactive example of Armstrong-Frederick cyclic hardening plasticity model

3년 초과 전 | 다운로드 수: 11 |

5.0 / 5
Thumbnail

제출됨


Newton-Raphson method
Easy application of Newton-Raphson algorithm

3년 초과 전 | 다운로드 수: 1 |

0.0 / 5
Thumbnail

제출됨


SDOF subjected to a seismic input
This is the study of a SDOF subjected to a seismic input

3년 초과 전 | 다운로드 수: 6 |

4.7 / 5
Thumbnail

제출됨


Dynamic response of a building subject to a seismic input
Dynamic response of a building subject to a seismic input

3년 초과 전 | 다운로드 수: 14 |

5.0 / 5
Thumbnail

문제를 풀었습니다


Height of a right-angled triangle
Given numbers a, b and c, find the height of the right angled triangle with sides a and b and hypotenuse c, for the base c. If a...

5년 초과 전

문제를 풀었습니다


Parallel vectors
Return true or false depending on whether 2 vectors are parallel or not. Vectors can be 2 or 3 dimensional. The origin is not c...

5년 초과 전

문제를 풀었습니다


Volume difference between Ellipsoid and Sphere
Given an ellipsoid of semi principal axis (a,b,c) find the volume of the difference between this ellipsoid and the sphere with...

5년 초과 전

문제를 풀었습니다


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...

5년 초과 전

문제를 풀었습니다


Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...

5년 초과 전

문제를 풀었습니다


Number of Even Elements in Fibonacci Sequence
Find how many even Fibonacci numbers are available in the first d numbers. Consider the following first 14 numbers 1 1 2...

5년 초과 전

문제를 풀었습니다


Perimeter
Given a sequence of points forming a closed path (first and last points are coincident) return the perimeter value. For example...

5년 초과 전

문제를 풀었습니다


The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...

5년 초과 전

문제를 풀었습니다


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

5년 초과 전

문제를 풀었습니다


Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...

5년 초과 전

문제를 풀었습니다


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

5년 초과 전

문제를 풀었습니다


Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...

5년 초과 전

문제를 풀었습니다


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 ...

5년 초과 전