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

bijna 7 jaar ago | 0

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

ongeveer 7 jaar ago | 0

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

ongeveer 7 jaar ago | 0

Solved


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

ongeveer 7 jaar ago

Solved


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

ongeveer 7 jaar ago

Solved


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

ongeveer 7 jaar ago

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

ongeveer 7 jaar ago | 0

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

ongeveer 7 jaar ago | 0

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

ongeveer 7 jaar ago | 1

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

ongeveer 7 jaar ago | 0

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

ongeveer 7 jaar ago | 0

| accepted

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

ongeveer 7 jaar ago | 0

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

ongeveer 7 jaar ago | 0

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

ongeveer 7 jaar ago | 0

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

ongeveer 7 jaar ago | 0

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

ongeveer 7 jaar ago | 0

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

ongeveer 7 jaar ago | 0

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

ongeveer 7 jaar ago | 0

| accepted

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

ongeveer 7 jaar ago | 1

| accepted

Solved


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]

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar 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...

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar ago

Solved


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.

meer dan 7 jaar ago

Load more