回答済み
Does anyone know how to plot a 3d plot with flat x and y axis? Like this: www.shmoop.com/systems-equations-inequalities/three-d-graphs.html
Hello Torjus, If you still need help with this, please contact MathWorks Technical Support here: <https://www.mathworks.com...

7年以上 前 | 0

回答済み
compiler 'Microsoft Visual C++ 2013 Professional (C)'
Hi, You may find the following post helpful: <https://www.mathworks.com/matlabcentral/answers/262605>

8年弱 前 | 0

回答済み
How to setup SDK7.1 C compiler for R2015a successfully?
Hi, You may find the following post helpful: <https://www.mathworks.com/matlabcentral/answers/262605>

8年弱 前 | 0

解決済み


The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...

8年弱 前

解決済み


The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".

8年弱 前

解決済み


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

8年弱 前

回答済み
Figure freezes during input() command on Windows
Hello, Are you using MATLAB R2016a? There was a bug with that version that was fixed in R2016b. The bug report and more detai...

8年弱 前 | 0

回答済み
Gaussian Process Binary Classification Pseudo Code
Hello, The following resources maybe useful to you: <https://www.mathworks.com/help/stats/classification.html> <https:...

8年弱 前 | 0

回答済み
Is it possible to read the ASIO device buffer size
Hello, If you are using MATLAB R2016a and above, you may be interested in the 'SamplesPerFrame' property of the 'audioDeviceR...

8年弱 前 | 1

回答済み
Can function definitions be preserved with Matlab coder?
Hello, The following doc maybe useful to you - it contains techniques you can use to control inlining during code generation....

8年弱 前 | 0

回答済み
Is there a way to view how often Matlab is being used and what modules are being used?
Hello, The following links maybe useful to you: <https://www.mathworks.com/matlabcentral/answers/102546-how-do-i-monitor-t...

8年弱 前 | 0

| 採用済み

回答済み
Help! I'm having difficulty uploading files from my computer to the Matlab Online
Hello, To seamlessly use your MATLAB files across all of your devices, you will need MATLAB Drive which can be installed from...

8年弱 前 | 0

回答済み
Shared Memory in parfor - Parallel Computing Toolbox - sharedmatrix does not work in 2016b
Hello, Parallel Computing Toolbox” follows a distributed memory model. Hence the workers won’t have access to the data presen...

8年弱 前 | 0

回答済み
Could you introduce me a USB NI DAQ for process control (e.g. closed loop) using MATLAB Simulink?
Hello, The products listed under 'USB' at the following link, maybe useful to you. <https://www.mathworks.com/hardware-sup...

8年弱 前 | 0

回答済み
Confused with on-demand MATLAB Distributed Computing server license and regular MDC server license
Hello, The following pages should be useful to you: <https://www.mathworks.com/products/parallel-computing/parallel-comput...

8年弱 前 | 0

回答済み
mex cholmod link problem
Hello, Based on the error message, there are a few things you can try: Check if deformMex.mexa64 is present on your system...

8年弱 前 | 0

回答済み
How do you use a debugger like GDB with a Rapid Accelerator Simulink simulation?
Hello, The following example maybe useful to you: <https://www.mathworks.com/matlabcentral/answers/97776-how-do-i-debug-a-...

8年弱 前 | 0

回答済み
database toolbox has no function for open a connection, why?
Hello, The following doc pages should be useful. Specifically, the 'database', 'isopen' and 'close' functions. <http://ww...

8年弱 前 | 0

| 採用済み

回答済み
Java Heap Expand past default slider
Hello, Further to Guillaume's response, you may find the following answer by Igor helpful. <https://www.mathworks.com/matl...

8年弱 前 | 1

| 採用済み

解決済み


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

8年弱 前

解決済み


Simple equation: Annual salary
Given an hourly wage, compute an annual salary by multiplying the wage times 40 and times 50, because salary = wage x 40 hours/w...

8年弱 前

解決済み


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

8年弱 前

解決済み


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

8年弱 前

解決済み


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

8年弱 前

解決済み


Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...

8年弱 前

解決済み


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

8年弱 前

解決済み


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

8年弱 前

解決済み


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

8年弱 前

解決済み


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

8年弱 前

解決済み


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

8年弱 前

さらに読み込む