Community Profile

photo

Silas Henderson


IUPUI

Last seen: 2 years ago Active since 2018

visual-math.com

Statistics

All
  • 5-Star Galaxy Level 3
  • Editor's Pick
  • Personal Best Downloads Level 3
  • First Review
  • First Submission
  • Thankful Level 1
  • Solver

View badges

Content Feed

View by

Submitted


Plot Gui 3d
z = f(x, y, t)

2 years ago | 2 downloads |

Thumbnail

Submitted


Piano
Play notes with keyboard

3 years ago | 1 download |

Thumbnail

Submitted


Sine wave gui
y = a*sin(b*x + c) + d

3 years ago | 2 downloads |

Thumbnail

Submitted


Plot Gui 2d
y = f(x, t)

3 years ago | 1 download |

Thumbnail

Submitted


Pong
Learn plot animation by writing a pong game

3 years ago | 15 downloads |

Thumbnail

Submitted


N-body animation
System of point-masses following inverse square law

3 years ago | 2 downloads |

Thumbnail

Submitted


Interpolation Animation
Animate polynomial approximations of increasing order

3 years ago | 2 downloads |

Thumbnail

Submitted


SVD Image Compression
Gui for visualizing A = U*S*V'

3 years ago | 1 download |

Thumbnail

Submitted


Drawing Robot
Solve 2-link and 3-link inverse kinematics and animate.

3 years ago | 2 downloads |

Thumbnail

Submitted


Truss Optimization with Fmincon
Find optimal areas to minimize truss compliance in 2d and 3d

3 years ago | 1 download |

Thumbnail

Submitted


3d Scene
Keyboard-navigable 3d scene

3 years ago | 1 download |

Thumbnail

Submitted


Matlab Paint
Minimal 'paint' function

3 years ago | 2 downloads |

Thumbnail

Submitted


Arrow 3d
3d arrow function for animation. function + demo

3 years ago | 4 downloads |

Thumbnail

Submitted


Truss Gui
Concept-sketch FEA gui. Not fully functional.

3 years ago | 1 download |

Thumbnail

Question


Single-File Object-Oriented Script?
How can I define a class and instantiate it within the same script? Something like ... object = some_class() while 1 ...

5 years ago | 1 answer | 0

1

answer

Solved


Find out value of sine given by degree.
Find out value of sine given by degree. If theta=30, it's value must be 0.5.

5 years ago

Solved


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

5 years ago

Solved


Divide by 4
Given the variable x as your input, divide it by four and put the result in y.

5 years ago

Solved


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

5 years ago

Solved


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

5 years ago

Solved


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

5 years ago

Solved


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 years ago

Solved


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

5 years ago

Solved


Find common elements in matrix rows
Given a matrix, find all elements that exist in every row. For example, given A = 1 2 3 5 9 2 5 9 3 2 5 9 ...

5 years ago

Solved


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

5 years ago

Solved


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

5 years ago