photo

Adrian Quesada


Last seen: 2 days ago Active since 2016

Followers: 3   Following: 1

Message

Programming Languages:
MATLAB
Spoken Languages:
English, Spanish
Pronouns:
He/him

Statistics

All
MATLAB Answers

8 Questions
3 Answers

File Exchange

13 Files

Cody

1 Problem
25 Solutions

RANK
78,288
of 300,302

REPUTATION
0

CONTRIBUTIONS
8 Questions
3 Answers

ANSWER ACCEPTANCE
37.5%

VOTES RECEIVED
0

RANK
5,296 of 20,911

REPUTATION
245

AVERAGE RATING
0.00

CONTRIBUTIONS
13 Files

DOWNLOADS
24

ALL TIME DOWNLOADS
129

RANK
14,430
of 168,040

CONTRIBUTIONS
1 Problem
25 Solutions

SCORE
380

NUMBER OF BADGES
5

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • GitHub Submissions Level 3
  • Thankful Level 2
  • 5-Star Galaxy Level 1
  • Personal Best Downloads Level 2
  • First Submission
  • Thankful Level 1
  • Speed Demon
  • Promoter
  • CUP Challenge Master
  • Commenter
  • Solver

View badges

Feeds

View by

Submitted


Mesh-FEA-Plate2D
📘 MATLAB app to demonstrate the importance of meshing in 2D plate FEA, comparing analytical vs numerical solutions with errors.

2 months ago | 1 download |

0.0 / 5
Thumbnail

Submitted


Open-Numerical-Methods
MATLAB app for root finding with Newton and Fixed-Point. Iterations, errors, and convergence plots for teaching.

2 months ago | 1 download |

0.0 / 5
Thumbnail

Submitted


Bracketing-Numerical-Methods
📘 Interactive MATLAB App for root finding via bracketing methods: Bisection and False Position.

2 months ago | 2 downloads |

0.0 / 5
Thumbnail

Submitted


DHT22-Temperature-and-Humidity-Plotter-MATLAB-App
Real-time DHT22 temperature & humidity plotting in MATLAB via Arduino. Open, collaborative project for community improvements.

2 months ago | 2 downloads |

0.0 / 5
Thumbnail

Submitted


Circulo de Mohr
Interactive MATLAB Live Script to learn and apply Mohr’s Circle (2D) with theory, examples, and step-by-step stress transformati...

2 months ago | 0 downloads |

0.0 / 5
Thumbnail

Submitted


Metodo-Numerico-de-Falsa-Posicion
Interactive MATLAB Live Script for solving nonlinear equations using the False Position method. Ideal for teaching and learning....

3 months ago | 1 download |

0.0 / 5

Submitted


Hydrostatic Pressure Calculator
📘 Interactive MATLAB app to calculate hydrostatic pressure from depth, density, and gravity.

3 months ago | 4 downloads |

0.0 / 5
Thumbnail

Submitted


Pipes Friction Factor
📘 Interactive MATLAB app to calculate the Darcy friction factor in pipe flows.

3 months ago | 2 downloads |

0.0 / 5
Thumbnail

Submitted


Water Properties & Pipes Diameters Filter
Interactive MATLAB app for filtering water properties and pipe roughness. Ideal for hydraulics, fluid mechanics, and engineering...

3 months ago | 1 download |

0.0 / 5
Thumbnail

Submitted


Mohr - Coulomb
📘 Interactive MATLAB App for evaluating 2D stress states using the Mohr–Coulomb failure criterion.

3 months ago | 3 downloads |

0.0 / 5
Thumbnail

Submitted


Theories-of-Failure
Interactive MATLAB app for visualizing stress-based failure theories: Rankine, Tresca, and von Mises. Ideal for engineering educ...

3 months ago | 1 download |

0.0 / 5
Thumbnail

Submitted


Metodo-numerico-de-Biseccion
Este repositorio contiene una implementación en Matlab del método numérico de bisección para encontrar las raíces de una función...

7 months ago | 3 downloads |

0.0 / 5

Submitted


Velocity and pressure profile in pipes
The Velocity Profile and Pressure Drop Plotting App is a powerful and user-friendly tool designed to assist students in analyzin...

1 year ago | 3 downloads |

0.0 / 5
Thumbnail

Solved


Inscribed Pentagon?
Your function will be provided with the five vertices of a pentagon (p) as well as the center point (cp) and radius (r) of a cir...

6 years ago

Solved


Triangle sequence
A sequence of triangles is constructed in the following way: 1) the first triangle is Pythagoras' 3-4-5 triangle 2) the s...

6 years ago

Question


How can I use Menu bar for multiple options check?
Hi all I am trying to create an app on the App Designer. This app will have the option to be in English and Spanish, so the us...

6 years ago | 0 answers | 0

0

answers

Question


How to make two drop down Dependent
I have two drop down on my App Designer app, like this: DropDown1.Items = {'1','2','3','4','5'}; DropDown1.ItemsData = [1,2,3,...

6 years ago | 1 answer | 0

1

answer

Question


How to find position of a number in an array using a drop down
Lets say P=[1 2 3;4 5 6; 7 8 9] is there any way to use a drop down in GUI or App Designer to search for a value in the first co...

6 years ago | 1 answer | 0

1

answer

Solved


Find the nearest prime number
Happy 5th birthday, Cody! Since 5 is a prime number, let's have some fun looking for other prime numbers. Given a positive in...

7 years ago

Solved


Pernicious Anniversary Problem
Since Cody is 5 years old, it's pernicious. A <http://rosettacode.org/wiki/Pernicious_numbers Pernicious number> is an integer w...

7 years ago

Solved


Extra safe primes
Did you know that the number 5 is the first safe prime? A safe prime is a prime number that can be expressed as 2p+1, where p is...

7 years ago

Solved


Octoberfest festival
A group of students decided to visit Octoberfest festival. First they ordered one beer, then after half-hour they taken one more...

7 years ago

Question


How to write a vector in uitable?
I have this columns names on the Matlab UITable app.UITable.ColumnName = {'Iteracion'; 'Xl'; 'Xu'; 'Xr'; 'f(Xl)'; 'f(Xr)'; ...

7 years ago | 0 answers | 0

0

answers

Question


How do I make an App window full screen programmatically in MATLAB?
I have a Matlab app, and I would like that it starts always maximized without using the mouse to maximize the figure window.

7 years ago | 2 answers | 0

2

answers

Solved


Energy of a photon
*&#9883 &#9762 &#9883 &#9762 &#9883 &#9762 &#9883* Given the frequency F of a photon in giga hertz. Find energy E of this...

8 years ago

Question


Plotting two continuous figures
Hi I need to make two graphs in one figure. I have to plot the current vrs the voltage, for this I use the following command: ...

8 years ago | 0 answers | 0

0

answers

Solved


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

8 years ago

Solved


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

8 years ago

Solved


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

8 years ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

8 years ago

Load more