문제를 풀었습니다


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

대략 12년 전

문제를 풀었습니다


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

대략 12년 전

문제를 풀었습니다


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

대략 12년 전

문제를 풀었습니다


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

대략 12년 전

문제를 풀었습니다


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

대략 12년 전

문제를 풀었습니다


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

대략 12년 전

문제를 풀었습니다


Add two numbers
Given a and b, return the sum a+b in c.

대략 12년 전

문제를 풀었습니다


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]; and ...

대략 12년 전

문제를 풀었습니다


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

대략 12년 전

문제를 풀었습니다


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

대략 12년 전

답변 있음
how to set a mdceuser?
To change the user the MDCE service is running as you need to do the following on all the computers MDCE is running on. 1. Fr...

12년 초과 전 | 0

답변 있음
Simultaneously using both the local pool and a cluster pool
It is not possible to more than one |matlabpool| open at a time, and it is not possible to combine MATLABs from different cluste...

12년 초과 전 | 0

답변 있음
Java userNodeForPackage function fails under Matlab on OS X
Are your classes on the <http://www.mathworks.com/help/techdoc/matlab_external/f4863.html#f4867 "dynamic" or "static" class path...

거의 13년 전 | 0

답변 있음
Matlab Mexfiles and Cuda: Evaluate function handle
You may want to look at the <http://www.mathworks.com/discovery/matlab-gpu.html GPU computing support available in Parallel Comp...

거의 13년 전 | 1

답변 있음
calling a java class from matlab
It depends on whether it has been packaged into a |.jar| file or is a |.class| file. Your class is called |hello.HelloWorld| I...

거의 13년 전 | 1

| 수락됨

답변 있음
Controlling stepsize of fmincon
Take a look at the documentation for |fmincon|: <http://www.mathworks.com/help/toolbox/optim/ug/fmincon.html#f854721> and the op...

거의 13년 전 | 2

답변 있음
use java classes in matlab
Try the following: % Generate the list of jar files jarDirectory = 'C:\Temp\httpcomponents-client-4.1.1\lib'; dirResult ...

거의 13년 전 | 3

| 수락됨

답변 있음
Create an array of file names produced by system('dir /S *.ext')
You can use <http://www.mathworks.com/help/techdoc/ref/textscan.html |textscan|> to split the multiple lines of output from the ...

거의 13년 전 | 3

| 수락됨

답변 있음
Reading from comand prompt executables
I think you will have to look at using some Java classes to do this. The |ProcessBuilder| and |Process| classes will enable you ...

대략 13년 전 | 0

답변 있음
"JVM is not running" Error When m file is called in thread function
It's fine to create new threads in MEX file, but accessing MATLAB in anyway, including making calls to the MEX API functions, fr...

대략 13년 전 | 1

| 수락됨

답변 있음
Can compiled MATLAB standalone make use of MDCS?
Since R2008b applications deployed using the MATLAB compiler can access a cluster running MATLAB Distributed Computing Server. ...

대략 13년 전 | 4

| 수락됨