MOHD AQUIB
Followers: 0 Following: 0
Statistics
RANK
12 041
of 296 352
REPUTATION
4
CONTRIBUTIONS
1 Question
2 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
2
RANK
18 727 of 20 394
REPUTATION
1
AVERAGE RATING
0.00
CONTRIBUTIONS
1 File
DOWNLOADS
1
ALL TIME DOWNLOADS
10
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Solved
Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...
nästan 5 år ago
Solved
Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...
nästan 5 år ago
Solved
Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.
nästan 5 år ago
Solved
Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...
nästan 5 år ago
Solved
Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...
nästan 5 år ago
Solved
Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.
nästan 5 år ago
Solved
Get the length of a given vector
Given a vector x, the output y should equal the length of x.
nästan 5 år ago
Solved
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
nästan 5 år 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]; ...
nästan 5 år 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...
nästan 5 år ago
Solved
Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...
nästan 5 år 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...
nästan 5 år 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...
nästan 5 år 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 ...
nästan 5 år 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...
nästan 5 år 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:...
nästan 5 år ago
Submitted
Parallelism in Matlab
This program shows how to run different parts of program at different time steps.
nästan 5 år ago | 1 download |
How do I create a matrix from a file from reading the first row and then use that first number to control a "for" loop to build
Hi, May be you have to alter your code a little bit. This can be one of its version: clc, clear all format short % ***** CO...
nästan 5 år ago | 2
Target Preferences block in Simulink
Check out this link on interfacing the processor: <https://www.youtube.com/watch?v=j7H0wT6XGJY>
mer än 7 år ago | 0
Question
Why my sine wave block in matlab simulink is not giving desired result??
When I am trying to get an output from sine wave with amplitude 220v and frequency 2*pi*50, the scope is showing undesirable sig...
ungefär 8 år ago | 0 answers | 0