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

mehr als 8 Jahre vor | 0

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

fast 9 Jahre vor | 0

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

fast 9 Jahre vor | 0

Gelöst


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

fast 9 Jahre vor

Gelöst


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

fast 9 Jahre vor

Gelöst


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

fast 9 Jahre vor

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

fast 9 Jahre vor | 0

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

fast 9 Jahre vor | 0

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

fast 9 Jahre vor | 1

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

fast 9 Jahre vor | 0

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

fast 9 Jahre vor | 0

| akzeptiert

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

fast 9 Jahre vor | 0

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

fast 9 Jahre vor | 0

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

fast 9 Jahre vor | 0

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

fast 9 Jahre vor | 0

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

fast 9 Jahre vor | 0

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

fast 9 Jahre vor | 0

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

fast 9 Jahre vor | 0

| akzeptiert

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

fast 9 Jahre vor | 1

| akzeptiert

Gelöst


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]

etwa 9 Jahre vor

Gelöst


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

etwa 9 Jahre vor

Gelöst


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

etwa 9 Jahre vor

Gelöst


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

etwa 9 Jahre vor

Gelöst


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

etwa 9 Jahre vor

Gelöst


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

etwa 9 Jahre vor

Gelöst


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

etwa 9 Jahre vor

Gelöst


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

etwa 9 Jahre vor

Gelöst


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

etwa 9 Jahre vor

Gelöst


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

etwa 9 Jahre vor

Gelöst


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.

etwa 9 Jahre vor

Mehr laden