MOHD AQUIB
Followers: 0 Following: 0
統計
All
Feeds
解決済み
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...
4年以上 前
解決済み
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...
4年以上 前
解決済み
Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.
4年以上 前
解決済み
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 ...
4年以上 前
解決済み
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 ...
4年以上 前
解決済み
Get the length of a given vector
Given a vector x, the output y should equal the length of x.
4年以上 前
解決済み
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...
4年以上 前
解決済み
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]; ...
4年以上 前
解決済み
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...
4年以上 前
解決済み
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...
4年以上 前
解決済み
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...
4年以上 前
解決済み
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...
4年以上 前
解決済み
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 ...
4年以上 前
解決済み
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...
4年以上 前
解決済み
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:...
4年以上 前
送信済み
Parallelism in Matlab
This program shows how to run different parts of program at different time steps.
4年以上 前 | ダウンロード 1 件 |
回答済み
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...
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...
4年以上 前 | 2
回答済み
Target Preferences block in Simulink
Check out this link on interfacing the processor: <https://www.youtube.com/watch?v=j7H0wT6XGJY>
Target Preferences block in Simulink
Check out this link on interfacing the processor: <https://www.youtube.com/watch?v=j7H0wT6XGJY>
7年以上 前 | 0
質問
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...
約8年 前 | 0 件の回答 | 0