Minhaj Nur Alam - MATLAB Central
photo

Minhaj Nur Alam


IUT

Active since 2013

Followers: 0   Following: 0

Message

Statistics

All
CodyMATLAB AnswersFrom 01/13 to 04/25Use left and right arrows to move selectionFrom 01/13Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

4 Questions
0 Answers

Cody

12 Problems
72 Solutions

RANK
28.019
of 298.086

REPUTATION
1

CONTRIBUTIONS
4 Questions
0 Answers

ANSWER ACCEPTANCE
25.0%

VOTES RECEIVED
0

RANK
 of 20.530

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
6.284
of 160.316

CONTRIBUTIONS
12 Problems
72 Solutions

SCORE
1.000

NUMBER OF BADGES
7

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Quiz Master
  • Puzzler
  • Speed Demon
  • Creator
  • Commenter
  • Promoter
  • Solver

View badges

Feeds

View by

Problem


Log of a number
Write a script that will give the log of x as output.

meer dan 8 jaar ago | 0 | 159 solvers

Problem


Vector with a repeated entry
Create a row vector of length n, filled with 5's. For example, if n = 3, output = [4 4 4] Hint: Search for the function...

meer dan 8 jaar ago | 1 | 105 solvers

Problem


If you have matrix A, create matrix B using matrix A as an "element"
A = [1 2 3 4; 5 6 7 8] B = [1 2 3 4 1 2 3 4; 5 6 ...

meer dan 8 jaar ago | 1 | 122 solvers

Problem


Square root of a number
Write a code that will output the square root of x.

meer dan 8 jaar ago | 1 | 427 solvers

Problem


Unit conversion
Convert x degree Celsius to y degree Fahrenheit.

meer dan 8 jaar ago | 3 | 253 solvers

Problem


Annual Salary
What is the annual salary of Mr. Cody if he works 40 hours a week and gets $x per hour and a yearly bonus of $2000? (Let, 50 wee...

meer dan 8 jaar ago | 1 | 158 solvers

Solved


Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416

meer dan 8 jaar ago

Problem


Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416

meer dan 8 jaar ago | 4 | 553 solvers

Solved


Corresponding letter to ASCII code.
Given the letter, the output will show the corresponding ASCII code.

meer dan 8 jaar ago

Problem


Corresponding letter to ASCII code.
Given the letter, the output will show the corresponding ASCII code.

meer dan 8 jaar ago | 0 | 102 solvers

Solved


ASCII code of a leter.
Given the letter, the output will show the corresponding ASCII code.

meer dan 8 jaar ago

Problem


ASCII code of a leter.
Given the letter, the output will show the corresponding ASCII code.

meer dan 8 jaar ago | 0 | 101 solvers

Solved


ASCII Code
Using matlab, give the symbol that is associated with ASCii code 90.

meer dan 8 jaar ago

Problem


ASCII Code
Using matlab, give the symbol that is associated with ASCii code 90.

meer dan 8 jaar ago | 2 | 110 solvers

Solved


Write a code that will follow the equation y = x * (x + x) * x.
If x = 5, y = 5 * (5+5) * 5 = 250

meer dan 8 jaar ago

Problem


Write a code that will follow the equation y = x * (x + x) * x.
If x = 5, y = 5 * (5+5) * 5 = 250

meer dan 8 jaar ago | 4 | 341 solvers

Problem


Given the variable x as your input, multiply it by four, then divide it by two. Then put the result in y.
If x = 5, y = 4*5/2 = 10

meer dan 8 jaar ago | 0 | 177 solvers

Solved


ASCii Code
Using matlab, give the symbol that is associated with ASCii code 122

meer dan 8 jaar ago

Solved


UICBioE240 problem 1.1
Remove the middle row from a matrix, assuming # of rows is odd. So if A = [ 1 2 3; 4 5 6; 7 8 9] the...

bijna 9 jaar ago

Solved


UICBioE240 problem 1.5
Find the size of the matrix, then multiply both values by 10 and make it into a column vector. So if A = [ 1 2 3; ...

bijna 9 jaar ago

Solved


UICBioE240 2.1
This will be useful later in the course, in conjunction to clc and clear all, what is the command to close all figure windows th...

bijna 9 jaar ago

Solved


UICBioE240 problem 1.13
Compute the following - y = x^5/(x^-1) and y = (1-(1/x^5))^-1. Have the final answer of y to equal a 1 by 2 vector.

bijna 9 jaar ago

Solved


UICBioE240 problem 1.4
So if A = [ 1 2 3; 4 5 6; 7 8 9] B = [ 3 3]

bijna 9 jaar ago

Solved


Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...

bijna 10 jaar ago

Solved


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

bijna 10 jaar ago

Solved


Return the first and last character of a string
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

bijna 10 jaar ago

Solved


surface of a spherical planet
you just discovered its circumference, that is the input.

bijna 10 jaar ago

Solved


Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...

bijna 10 jaar ago

Solved


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

bijna 10 jaar ago

Load more