Beantwortet
Matlab R2013a won't start on Mac OSX 10.8.5 (Mountain Lion)
Contact MathWorks' installation support team!

fast 13 Jahre vor | 0

Beantwortet
imgradient() function in matlab 2013b version
doc gradient This will give you the components from which you can calculate magnitude. Or you can upgrade :)

fast 13 Jahre vor | 1

| akzeptiert

Beantwortet
Menu Bar in Matlab IDE
There is no way to revert to the old IDE from within MATLAB R2012b or greater. The check for updates is on the home tab under...

fast 13 Jahre vor | 0

Gelöst


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

fast 13 Jahre vor

Beantwortet
Error using myfun (line 15) Not enough input arguments.
How are you calling it? Are you are just pressing the play button (green triangle), then no inputs are passed to myfun. You ne...

fast 13 Jahre vor | 0

| akzeptiert

Beantwortet
Error message when using plot command: "Subscript indices must either be real positive integers or logicals"
Run: dbstop if error At the command line. Then run the above code. It will stop with the debugger on the offending l...

fast 13 Jahre vor | 0

Beantwortet
questions about Amazon EC2
I would advise contacting us on this one. The specialists who can help you here have more experience and resources to help. As...

fast 13 Jahre vor | 0

| akzeptiert

Beantwortet
License Manager Error -97
Contact MathWorks' Installation and Licensing Support.

fast 13 Jahre vor | 0

Gelöst


Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...

fast 13 Jahre vor

Beantwortet
issue constructing structure with valid field names for traincascadeobjectdetector
No. Fieldnames have to be valid MATLAB variable names. If you need to create them on the fly, you can use |genvarname|: g...

fast 13 Jahre vor | 0

| akzeptiert

Beantwortet
Buying Matlab Student version.
Yes, as long as you're still a student (you'll need to deactivate it from the old machine). <http://www.mathworks.com/academi...

fast 13 Jahre vor | 0

| akzeptiert

Gelöst


LIFO Validation
Write a function to check whether a LIFO (Last In First Out) restriction on inventory is violated. We have two input vectors ...

fast 13 Jahre vor

Beantwortet
Legend line are the same always
Pass the plot handles into |legend| *More* When you plot |rand(10)| it will plot 10 lines and give you back 10 handles. T...

fast 13 Jahre vor | 0

Beantwortet
Is it possible to define the properties for a class using cell array?
Ycan have your class inherit from _DynamicProps_ and this will allow you to add properties dynamically. <http://www.mathworks...

fast 13 Jahre vor | 1

| akzeptiert

Beantwortet
ML R2013a installation doesn't start
Contact our (free) installation technical support.

fast 13 Jahre vor | 0

Beantwortet
bounding box for ratio
doc regionprops Will give you bounding box. doc size Will give you image size.

fast 13 Jahre vor | 0

| akzeptiert

Gelöst


Find the largest value in the 3D matrix
Given a 3D matrix, A, find the largest value. E.g. >> A = 1:9; >> A=reshape(A,[3 1 3]); >> islargest(A) ans = 9

fast 13 Jahre vor

Beantwortet
how to get my plp?
Talk to your Company/University IT department or contact out Customer Service department.

fast 13 Jahre vor | 1

| akzeptiert

Gelöst


Given a window, how many subsets of a vector sum positive
Given a vector: [1 0 -1 3 2 -3 1] and a window of 2, A sliding window would find: 1 + 0 = 1 0 - 1 = -1 ...

fast 13 Jahre vor

Gelöst


Get ranking of a combination
I have the numbers pulled without replacement from the set [1 2 3 4 5 6 7 8 9 10 11 12 13]; They are then ordered from least to...

fast 13 Jahre vor

Gelöst


Create a two dimensional zero matrix
You have to create a zero matrix of size (mxn) whose inputs are m and n and the elements of your matrix should be zeros. Exam...

fast 13 Jahre vor

Beantwortet
Help with syntax of calling genetic algorithm (ga) function
I would try: dbstop if error To stop with the debugger when the error occurs. It looks like you may need to change a ma...

fast 13 Jahre vor | 0

Gelöst


Return the Nth Output from an Input Command
*Description* Given _F_, a cell array whose first element is a function handle and subsequent elements are arguments, return ...

fast 13 Jahre vor

Gelöst


Find the maximum two numbers of every column of a matrix
Find the maximum two numbers of every column of a matrix. Example: If we input a matrix A = [ 1 2 4 6 0 3 ...

fast 13 Jahre vor

Beantwortet
3-D and 4-D Interpolation for datas that are not monotone increasing
Then use |griddatan| (or encourage your IT department to upgrade the release :) ).

fast 13 Jahre vor | 0

Gelöst


Ohm's Law
Well its Ohm's law... So V = IR! I will give two of the three values, such as V and I or I and R and you have to return th...

fast 13 Jahre vor

Gelöst


Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
The given function returns the index of the maximum value in a given matrix. such as X=[4,3,4,5,9,12,0,5] Ans= 6 if maxim...

fast 13 Jahre vor

Gelöst


GJam 2013 Veterans: Hedge
This Challenge is derived from <http://code.google.com/codejam/contest/2334486/dashboard Hedgemony>. This is the Large data set ...

fast 13 Jahre vor

Gelöst


ベクトルのスケーリング
入力したベクトルの大きさを1にしてください。

fast 13 Jahre vor

Gelöst


Returning a "greater than" vector
Given a vector, v, return a new vector , vNew, containing only values > n. For example: v=[1 2 3 4 5 6] n=3 vNew =...

fast 13 Jahre vor

Mehr laden