Beantwortet
Will Matlab 2006a run on Windows 7 (x32)
It's not officially supported. <http://www.mathworks.com/support/sysreq/release2006b/index.html>

mehr als 12 Jahre vor | 0

Beantwortet
After Allocating a Large Variable and Crashing, MATLAB is Forever Slow
I would recommend first just upping your Java Heap Space. This is the first thing to do for desktop sluggishness. Go to: ...

mehr als 12 Jahre vor | 0

Beantwortet
'mtimes' error and how to fix it
_v_ appears to be a dataset. If you want to multiply one of the variables in this dataset with another, you'll need to extract ...

mehr als 12 Jahre vor | 0

Beantwortet
I want to find the initial parameters for nlinfit, but I do not calculate it!
Perhaps try |MultiStart| or |GlobalSearch|: * <http://www.mathworks.com/help/releases/R2013b/gads/multistartclass.html> * <h...

mehr als 12 Jahre vor | 0

Gelöst


Sum Rows
Sum the same indexed (unique) rows. Examine the test suite. Related Challenge - <http://www.mathworks.com/matlabcentral/cody/...

mehr als 12 Jahre vor

Beantwortet
Continuous plot(x,y) for discrete data points
|plot| is just connecting the points with lines. If you don't want this, you can specify the marker. For example, for a red * ...

mehr als 12 Jahre vor | 1

Beantwortet
How do I make a pcolor plot use the first row and column of the data for the X and Y axes?
If I understand you correctly, you need to extract the first row/column and use |meshgrid| to build the grid for |surf| (better ...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
How to "Rotate a block" present in model by using "Command" ?
Use |set_param| to change the various block properties to what you want: <http://www.mathworks.com/help/releases/R2013b/simul...

mehr als 12 Jahre vor | 0

Beantwortet
How to permute the rows and columns in a matrix ?
So A([4,1],:) = A([1,4],:) ?

mehr als 12 Jahre vor | 0

Gelöst


Parallel vectors
Return true or false depending on whether 2 vectors are parallel or not. Vectors can be 2 or 3 dimensional. The origin is not c...

mehr als 12 Jahre vor

Beantwortet
assignin caller to variables - performance issues
Try to avoid using |assignin|. Since |assignin| "poofs" variables into a workspace, this destroys some of the JIT compilation t...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
please i need the matlab code for this question
t = (0:0.1:10).'; w_0 = linspace(-2*pi,2*pi,100); surf(t*ones(size(w_0)),ones(size(t))*w_0,cos(t*w_0))

mehr als 12 Jahre vor | 0

Beantwortet
you will provide both the code and snapshots of the generated output.
Well in order to run the code and get snapshots along the way. Use the publish functionality. This can be found from the Edito...

mehr als 12 Jahre vor | 0

Gelöst


average for three points
how to calculate the average (for each three values of y) y=[2 3 5 3 4 2 3 4 5 3 2 7 8 6 5 5 4 3 3 3 2 ] you ...

mehr als 12 Jahre vor

Beantwortet
How to find the X axis length and Yaxis length of the object
doc regionprops

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
how to show a sparse matrix
spy ?

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Is mp3write missing from R2013B and R2013a?
I don't believe that is a MathWorks' function. Perhaps you downloaded it from here: <http://www.mathworks.com/matlabcentra...

mehr als 12 Jahre vor | 0

| akzeptiert

Gelöst


The prisoner
"We want information, information, information." "Who are you?" Input can be a string or a number (array).

mehr als 12 Jahre vor

Beantwortet
how use NFTOOL & OPTIMTOOL
You can use code and functions generated from these tools with the other, sure. E.g. generate a neural net fitting function and...

mehr als 12 Jahre vor | 0

Beantwortet
How to select a random number from a set of numbers
doc randperm %? E.g. x = sin(1:10); x(randperm(numel(x),3))

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Undefined function imapplymatrixc for input arguments of type 'uint8' under ubuntu 12.04
Yes, it needs to be deployed on the same platform it is to be used on.

mehr als 12 Jahre vor | 0

Beantwortet
i dont what is the problem in this simple program plz help distinguish prime numbers
if isprime(num) disp('The num is prime') else disp('The num is not prime') end

mehr als 12 Jahre vor | 0

Beantwortet
Making Handle a Superclass
Run: clear; clear classes; To make sure that any old instances of your class are gone. If the error still appears,...

mehr als 12 Jahre vor | 2

| akzeptiert

Gelöst


Sum of diagonal of a square matrix
If x = [1 2 4; 3 4 5; 5 6 7] then y should be the sum of the diagonals of the matrix y = 1 + 4 + 7 = 12

mehr als 12 Jahre vor

Beantwortet
how do i "re attach" string columns to data columns for identification?
If I understand you correctly, here is a small example: x = rand(100,1); y = rand(100,1); names = char(randi(100,[1...

mehr als 12 Jahre vor | 0

Beantwortet
finding unique rows with largest value in 3rd column
Assuming that the order of the first two columns doesn't matter and that your expected matrix is missing [1 3 8] *Old/cla...

mehr als 12 Jahre vor | 0

| akzeptiert

Gelöst


Generate this matrix
Generate the following matrix. n = 2; out = [-4 -3 -2 -1 0 -3 -2 -1 0 1 -...

mehr als 12 Jahre vor

Gelöst


Back to basics 1 - Saving
Covering some basic topics I haven't seen elsewhere on Cody. Given an input variable 'x', save it to disk in a file named 'co...

mehr als 12 Jahre vor

Gelöst


A matrix of introverts
You are given a matrix full of numbers who happen to be very shy. Write a MATLAB function that will put a square of zeros aroun...

mehr als 12 Jahre vor

Gelöst


A matrix of extroverts
Now that the introverts have had their script, the extroverts spoke up (naturally!) and demanded one as well. You will be given...

mehr als 12 Jahre vor

Mehr laden