제출됨


3D Mesh Over a Space Shuttle Nose to Capture Flow Around It
Bottom Clustering of Mesh is applied to capture the flow near to the surface of the shuttle's nose

대략 3년 전 | 다운로드 수: 1 |

Thumbnail

제출됨


Circle to Any Polygon Conversion
Enter any value in place of "n" as the no. of sides of polygon, and enter the radius of circle. Code will circumscribe the circl...

대략 3년 전 | 다운로드 수: 1 |

Thumbnail

답변 있음
How to plot with a reciprocal (1/x) scale
Supposing this example from the MATLAB previous codes, A = [0.5,0.65,0.7,0.66,0.81]; % The plotting function values B = [5,10...

대략 3년 전 | 0

답변 있음
import data from word to MATLAB and save to other word file?
For Importing, refer, https://www.mathworks.com/matlabcentral/answers/348737-how-to-read-ms-word-file-doc-docx#answer_274150 ...

대략 3년 전 | 0

답변 있음
Add titles to excel file columns
https://www.mathworks.com/matlabcentral/answers/467038-how-to-add-headers-to-excel#answer_379174 This link would work for you, ...

대략 3년 전 | 0

문제를 풀었습니다


Reverse the Words (not letters) of a String
*Description* Change the words of a string such that the words appear in reverse order. You may assume that the string is a n...

대략 3년 전

문제를 풀었습니다


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

대략 3년 전

문제를 풀었습니다


First non-zero element in each column
For a given matrix, calculate the index of the first non-zero element in each column. Assuming a column with all elements zero ...

대략 3년 전

문제를 풀었습니다


Determine Whether an array is empty
Input a matrix x, output y is TRUE if x is empty, otherwise FALSE.

대략 3년 전

문제를 풀었습니다


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

대략 3년 전

문제를 풀었습니다


Return the Fibonacci Sequence
Write a code which returns the Fibonacci Sequence such that the largest value in the sequence is less than the input integer N. ...

대략 3년 전

문제를 풀었습니다


Rotate a Matrix
Input a Matrix x, Output y is the matrix rotating x 90 degrees clockwise

대략 3년 전

문제를 풀었습니다


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

대략 3년 전

문제를 풀었습니다


Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...

대략 3년 전

문제를 풀었습니다


Swap two numbers
Example Input: a = 10 b = 20 Output a = 20 b = 10

대략 3년 전

문제


Convert any case sentence to Title Case

대략 3년 전 | 1 | 솔버 수: 17

문제를 풀었습니다


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

대략 3년 전

문제를 풀었습니다


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

대략 3년 전

문제를 풀었습니다


Derivative of polynomial
Compute the derivative of a given polynomial. The input is an <http://www.mathworks.com/help/matlab/math/representing-polynomial...

대략 3년 전

답변 있음
how can i use for loop for this script
According to your given document, As per this formula, Your parameters in the code should be, alpha(b) = -((rho*w^2)/E)-((rho...

대략 3년 전 | 0

답변 있음
Concatenate 3-D matrix in a for loop
With an example, I would like to answer this. Suppose, "a" is the given 3D Matrix and "b" is the 2D matrix returns the concaten...

대략 3년 전 | 0

답변 있음
how can i use for loop for this script
As per your given expression in the question, the assumptions of the constants here taken as 1, The running code is, roh = 1;...

대략 3년 전 | 0

| 수락됨

답변 있음
how can i use for loop for this script
k_j(b) =(-1)^(j(b)/2)*([sqrt(alpa+(-1)^j(b))*sqrt((alpa)^2+4*beta)/2]); Provide the original formula in a text or written manne...

대략 3년 전 | 0

문제를 풀었습니다


kmph to mps
convert kilometer per hour to meter per second

대략 3년 전

문제를 풀었습니다


Make one big string out of two smaller strings
If you have two small strings, like 'a' and 'b', return them put together like 'ab'. 'a' and 'b' => 'ab' For extra ...

대략 3년 전

문제를 풀었습니다


What's Your BMI?
Find the body mass index. For reference, please refer to Wikipedia here: <http://en.wikipedia.org/wiki/Body_mass_index body ...

대략 3년 전

문제를 풀었습니다


What percentage?
Calculate the output c as the percentage of a on b for given a and b.

대략 3년 전

문제를 풀었습니다


Matrix to column conversion
Given a matrix of any size, convert it into a column vector. e.g A=[10 20 30; 40 50 60] then, B = [10; 40; ...

대략 3년 전

문제를 풀었습니다


Check if equal
Return true if all the elements of an nD array are equal, false otherwise.

대략 3년 전

문제를 풀었습니다


Create an index-powered vector
Given a input vector x, return y as index-powered vector as shown below. Example x = [2 3 6 9] then y should be [...

대략 3년 전

더 보기