photo

Maruf Ahamed


Last seen: environ un an il y a Actif depuis 2018

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

0 Questions
1 Réponse

File Exchange

3 Fichiers

Cody

0 Problèmes
11 Solutions

RANG
125 119
of 301 895

RÉPUTATION
0

CONTRIBUTIONS
0 Questions
1 Réponse

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
0

RANG
7 308 of 21 447

RÉPUTATION
140

CLASSEMENT MOYEN
5.00

CONTRIBUTIONS
3 Fichiers

TÉLÉCHARGEMENTS
7

ALL TIME TÉLÉCHARGEMENTS
1259

RANG
37 200
of 177 188

CONTRIBUTIONS
0 Problèmes
11 Solutions

SCORE
130

NOMBRE DE BADGES
2

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • 5-Star Galaxy Level 2
  • Personal Best Downloads Level 2
  • First Review
  • GitHub Submissions Level 1
  • First Submission
  • Commenter
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

A résolu


Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...

environ 8 ans il y a

A résolu


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

environ 8 ans il y a

Réponse apportée
How to calculate first 100 Fibonacci numbers?
% code you can try this: clc clear all n=input('n=') j=0; c=1; h=2; d(1)=1; for i=1:n k=c+j; d(h)=k; ...

environ 8 ans il y a | 0

A résolu


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

environ 8 ans il y a

A résolu


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

environ 8 ans il y a

A résolu


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

environ 8 ans il y a

A résolu


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

environ 8 ans il y a

A résolu


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

environ 8 ans il y a

A résolu


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

environ 8 ans il y a

A résolu


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

environ 8 ans il y a

A résolu


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

environ 8 ans il y a

A résolu


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

environ 8 ans il y a

A soumis


Maruf261/GaussE
Solving linear simultaneous equations

environ 8 ans il y a | 2 téléchargements |

0.0 / 5

A soumis


Gauss Elimination with Partial Pivoting
Solving linear simultaneous equations

environ 8 ans il y a | 2 téléchargements |

5.0 / 5

A soumis


Gauss Elimination
This is one of the process of solving simultaneous linear equation by Back substitution method.

plus de 8 ans il y a | 3 téléchargements |

0.0 / 5