photo

Md. Ikrama Hossain


Last seen: 18 giorni fa Attivo dal 2022

Followers: 3   Following: 0

Messaggio

Programming Languages:
MATLAB
Spoken Languages:
English
Professional Interests:
Programming, Python with MATLAB, Microprocessors, Photonics

Statistica

All
MATLAB Answers

1 Domanda
0 Risposte

File Exchange

6 File

Cody

31 Problemi
221 Soluzioni

RANK
46.398
of 302.034

REPUTAZIONE
0

CONTRIBUTI
1 Domanda
0 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.0%

VOTI RICEVUTI
0

RANK
7.584 of 21.507

REPUTAZIONE
129

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
6 File

DOWNLOAD
12

ALL TIME DOWNLOAD
1249

RANK
550
of 178.313

CONTRIBUTI
31 Problemi
221 Soluzioni

PUNTEGGIO
3.607

NUMERO DI BADGE
19

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Curator
  • Puzzler
  • Personal Best Downloads Level 3
  • First Submission
  • Quiz Master
  • Cody Problems in Japanese Master
  • Speed Demon
  • Leader
  • Creator
  • CUP Challenge Master
  • Commenter
  • Promoter

Visualizza badge

Feeds

Visto da

Risolto


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to find the logical indices o...

circa 2 mesi fa

Risolto


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

circa 2 mesi fa

Risolto


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

circa 2 mesi fa

Risolto


MATLAB 101: Hypotenuse Calculator
Write a MATLAB function that accepts the base and height of a right-angled triangle (or arrays of bases and heights) and returns...

circa 2 mesi fa

Problema


MATLAB 101: Hypotenuse Calculator
Write a MATLAB function that accepts the base and height of a right-angled triangle (or arrays of bases and heights) and returns...

circa 2 mesi fa | 0 | 62 risolutori

Risolto


MATLAB 101: Rectangle Properties
Write a MATLAB function that accepts the length (L) and width (W) of a rectangle and returns two outputs: its area and its perim...

circa 2 mesi fa

Problema


MATLAB 101: Rectangle Properties
Write a MATLAB function that accepts the length (L) and width (W) of a rectangle and returns two outputs: its area and its perim...

circa 2 mesi fa | 0 | 61 risolutori

Risolto


MATLAB 101: Reverse a Vector
Write a MATLAB function that takes a 1D vector (either a row or a column vector) and returns the vector with its elements in exa...

circa 2 mesi fa

Problema


MATLAB 101: Reverse a Vector
Write a MATLAB function that takes a 1D vector (either a row or a column vector) and returns the vector with its elements in exa...

circa 2 mesi fa | 0 | 69 risolutori

Risolto


MATLAB 101: Replace Negatives with Zero
Write a MATLAB function that takes a numeric array (vector or matrix) of numbers and replaces all negative numbers with zero. Po...

circa 2 mesi fa

Problema


MATLAB 101: Replace Negatives with Zero
Write a MATLAB function that takes a numeric array (vector or matrix) of numbers and replaces all negative numbers with zero. Po...

circa 2 mesi fa | 0 | 31 risolutori

Risolto


MATLAB 101: Count the Evens
Write a MATLAB function that accepts an array of integers and returns the total count of even numbers present in the array. Note...

circa 2 mesi fa

Problema


MATLAB 101: Count the Evens
Write a MATLAB function that accepts an array of integers and returns the total count of even numbers present in the array. Note...

circa 2 mesi fa | 0 | 36 risolutori

Risolto


MATLAB 101: Scalar-Vector Multiplication
Write a MATLAB function that takes a numeric array (vector or matrix) v and a scalar multiplier s. The function should return a ...

circa 2 mesi fa

Problema


MATLAB 101: Scalar-Vector Multiplication
Write a MATLAB function that takes a numeric array (vector or matrix) v and a scalar multiplier s. The function should return a ...

circa 2 mesi fa | 0 | 60 risolutori

Risolto


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

circa 2 mesi fa

Risolto


MATLAB 101: Basic Calculator
Write a MATLAB function named basic_calculator that accepts two input numbers, A and B, and returns four distinct outputs: The ...

circa 2 mesi fa

Risolto


MATLAB 101: Tribonacci Sequence
Each number in the Tribonacci series is the sum of the three preceding ones. Sequence: 0, 0, 1, 1, 2, 4, 7, 13, 24, 44, ... Writ...

circa 2 mesi fa

Problema


MATLAB 101: Tribonacci Sequence
Each number in the Tribonacci series is the sum of the three preceding ones. Sequence: 0, 0, 1, 1, 2, 4, 7, 13, 24, 44, ... Writ...

circa 2 mesi fa | 0 | 21 risolutori

Risolto


MATLAB 101: Area of a circle
Write a MATLAB function named circle_area that accepts the radius r as an input and returns the area of the circle.

circa 2 mesi fa

Risolto


MATLAB 101: Multinacci Sequence Generator
Create a function that generates a sequence of length n based on the sum of the previous l terms. If l = 2, it acts like the Fi...

circa 2 mesi fa

Problema


MATLAB 101: Multinacci Sequence Generator
Create a function that generates a sequence of length n based on the sum of the previous l terms. If l = 2, it acts like the Fi...

circa 2 mesi fa | 0 | 19 risolutori

Risolto


MATLAB 101: Lucas Sequence
The Lucas sequence follows the same additive rule as Fibonacci, but starts with 2 and 1. Sequence: 2, 1, 3, 4, 7, 11, 18, 29, 47...

circa 2 mesi fa

Problema


MATLAB 101: Lucas Sequence
The Lucas sequence follows the same additive rule as Fibonacci, but starts with 2 and 1. Sequence: 2, 1, 3, 4, 7, 11, 18, 29, 47...

circa 2 mesi fa | 0 | 26 risolutori

Risolto


MATLAB 101: Fibonacci Sequence
The Fibonacci sequence is defined by the rule that each number is the sum of the two preceding ones. Sequence: 0, 1, 1, 2, 3, 5,...

circa 2 mesi fa

Problema


MATLAB 101: Fibonacci Sequence
The Fibonacci sequence is defined by the rule that each number is the sum of the two preceding ones. Sequence: 0, 1, 1, 2, 3, 5,...

circa 2 mesi fa | 0 | 32 risolutori

Risolto


MATLAB 101: Factorial Finder
The factorial of a non-negative integer n (denoted as n!) is the product of all positive integers less than or equal to n. For e...

circa 2 mesi fa

Problema


MATLAB 101: Factorial Finder
The factorial of a non-negative integer n (denoted as n!) is the product of all positive integers less than or equal to n. For e...

circa 2 mesi fa | 0 | 16 risolutori

Risolto


MATLAB 101: List Manipulation: Add and Remove
Create a MATLAB function that performs dynamic list operations on a cell array of strings. The function should accept the curren...

circa 2 mesi fa

Problema


MATLAB 101: List Manipulation: Add and Remove
Create a MATLAB function that performs dynamic list operations on a cell array of strings. The function should accept the curren...

circa 2 mesi fa | 0 | 20 risolutori

Carica altro