Beantwortet
My EDITOR tab is disabled.
You need to be in debug mode. Put a break point on the line and then run the file. *NOTE* You can not debug sections so you wi...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
compute the sum of each item of a vector with every item of another vector
bsxfun(@plus,1:3,(4:6)') You can |reshape| it after if you want it as a 9x1

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
What is the kernel that MATLAB currently uses for its Symbolic Math Toolbox?
It uses MUPAD and hasn't used Maple since 2007 or 2008.

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
Moving from nlinfit to lsqnonlin?
|lsqcurvefit| is essentially the same thing as |lsqnonlin| but accepts data and functions in the same manner you're used to.

mehr als 10 Jahre vor | 1

Beantwortet
rotating x-axis labels on an image
In R2014b or newer: >> set(gca,'XTickLabelRotation',90)

mehr als 10 Jahre vor | 1

| akzeptiert

Beantwortet
Unable to import Document Object Model (DOM) API from MATLAB Report Generator
Are you on MATLAB >=R2014b with Report Generator installed and licensed? ver license test matlab_report_gen

mehr als 10 Jahre vor | 0

Beantwortet
In Report Generator DOM how can I make row heights size exactly to the text in the table?
Try using the |RowHeight| class to specify the height of each individual row that you then append to the |Table|. <http://www...

mehr als 10 Jahre vor | 0

Beantwortet
strtrim not working for cell array
iscellstr(your_cell) will definitively tell you if your cell contains only strings. It's also possible that it contains nu...

mehr als 10 Jahre vor | 0

Beantwortet
To find Maximum number of entries in a 1*36 cell
[nmx, idx] = max(cellfun(@numel,your_cell))

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
How do I make my user defined function accept vectors as inputs rather than scalars?
Fgravitational=-G*((m1*m2)/d^2); Put a . before the mathematical operators: G.*((m1.*me)./d.^2) There's a helper fu...

mehr als 10 Jahre vor | 0

Beantwortet
Parallel Computing Toolbox - Concurrent Users
Yes, but those other computers will need to be licensed with the MATLAB Distributed Computing Server. Your Parallel Computing T...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
A matlab program in a website
This is the primary purpose of the MATLAB production server. The front end would not be developed in MATLAB, but the algorithms...

mehr als 10 Jahre vor | 0

Beantwortet
How do I run two scripts in parallel ?
Try |parfeval|, which uses an already open pool rather than opening a new one like |batch| and turn your scripts into functions ...

mehr als 10 Jahre vor | 0

Beantwortet
How to normalize a histogram?
<http://www.mathworks.com/help/releases/R2015b/matlab/ref/histogram.html#namevaluepairs> Look at the _'Normalization'_ proper...

mehr als 10 Jahre vor | 6

| akzeptiert

Beantwortet
Using SimEvents results in Matlab
Assign the output of |sim| to _simOut_. simOut = sim('concreting1', 'SaveOutput','on'); z = simOut.get('Finaloutput');...

mehr als 10 Jahre vor | 1

| akzeptiert

Beantwortet
How can I replace string categories into numbers (such as 'AAA' would become 1, 'AA+' would become 2)?
double(categorical_array)

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
I would like a global solution to showing a busy cursor during long operations (not figure dependent)
figs = findall(groot,'Type','Figure') Now set it to all figs set(figs,'Prop',value)

mehr als 10 Jahre vor | 0

| akzeptiert

Gelöst


Is It a Snake?
Given an m-by-n matrix, return true if the elements of the matrix are a connected "snake" shape from 1 to m*n. Otherwise return ...

mehr als 10 Jahre vor

Gelöst


Step up
For given input array, output a array with all elements step up by two

mehr als 10 Jahre vor

Beantwortet
How to add a filtered random noise to a wav
Look at the app |fdatool| to build the filter and |randn| to generate random noise.

mehr als 10 Jahre vor | 0

Beantwortet
Intlinprog does not stop at time limit
<http://www.mathworks.com/help/releases/R2015b/optim/ug/mixed-integer-linear-programming-algorithms.html> It won't generate n...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
How to use the already trained neural network
y = net(x) where net is your trained network and x is your new input.

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
Finding Where a Variable Is Defined
If you click on a variable in the editor, the right hand side will show gray lines for all instances of it. Click on the top on...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
Sum elements in a column where there are matching values in an adjacent column?
Here's one way, there are probably better ones, but this works: *NEW* A = [1 1 100; 1 2 200; 1 3 50; 2 1 100; 2 2 200; 2...

mehr als 10 Jahre vor | 1

| akzeptiert

Beantwortet
Using Classification and subsets
Look at the |training| and |test| methods of the |cvpartition|. cv = cvpartition(100,'KFold',3); train2 = training(cv,2) %...

mehr als 10 Jahre vor | 1

Beantwortet
Error using Application Compiler to create Standalone .exe application
It looks like the license for the compiler is not available. Are you using it on a concurrent license?

mehr als 10 Jahre vor | 0

Beantwortet
Is this a bug? Accessing table variables in cell format by row indices (R2015a)
In R2015b I see the expected results for both of your operations t.c{[1,2,5]} ans = 0.8147 ans = 0.9058 ans =...

mehr als 10 Jahre vor | 0

| akzeptiert

Beantwortet
Finding of Previous Values From Derivatives
cumsum(Qnun_turevi_volkan) + c

mehr als 10 Jahre vor | 0

Mehr laden