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

más de 10 años hace | 0

| aceptada

Respondida
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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 1

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

más de 10 años hace | 1

| aceptada

Respondida
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

más de 10 años hace | 0

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

más de 10 años hace | 0

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

más de 10 años hace | 0

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

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

más de 10 años hace | 0

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

más de 10 años hace | 6

| aceptada

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

más de 10 años hace | 1

| aceptada

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

más de 10 años hace | 0

| aceptada

Respondida
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)

más de 10 años hace | 0

| aceptada

Resuelto


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

más de 10 años hace

Resuelto


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

más de 10 años hace

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

más de 10 años hace | 0

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 1

| aceptada

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

más de 10 años hace | 1

Respondida
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?

más de 10 años hace | 0

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

más de 10 años hace | 0

| aceptada

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

más de 10 años hace | 0

Cargar más