Respondida
Q: solving ax=0 with regularization?
There is a package called <http://www.mathworks.com/matlabcentral/fileexchange/52 regtools> in the File Exchange that might help...

más de 14 años hace | 0

Respondida
Amend code to save file in a different format
You could use this code: fid = fopen('example.txt','w'); fprintf(fid,'%i %i %i %i %i %i %i\n',D); fclose(fid); If you ...

más de 14 años hace | 0

Respondida
Hole filling by interpolation method?
If your data are irregularly spaced, you could try using <http://www.mathworks.com/help/techdoc/ref/triscatteredinterpclass.html...

más de 14 años hace | 0

Respondida
Sym
Use <http://www.mathworks.com/help/toolbox/symbolic/vpa.html vpa>, e.g., c = vpa(a*b,4)

más de 14 años hace | 1

| aceptada

Respondida
Colorbar in an other figure...
The *really* simple way to do it is to just grab the bar with the mouse and move it. Do you want to automate this? If you do ...

más de 14 años hace | 0

| aceptada

Respondida
Display Text Without Formatting
You can replace all the occurrences of |href| by |HREF| for display: str = {'<a href="test">TEST1</a>';'<a href="test">TEST...

más de 14 años hace | 0

| aceptada

Respondida
text to annotate figure
Sounds like you might want to use <http://www.mathworks.com/help/techdoc/ref/legend.html legend>.

más de 14 años hace | 0

| aceptada

Respondida
Get the "handle number" of a standard handle class
Setappdata seems best because of the limitations on using the UserData property (see <http://www.mathworks.com/support/tech-note...

más de 14 años hace | 1

Respondida
visualization of 3D matrix: how do I swap the y and z axis?
You can use <http://www.mathworks.com/help/techdoc/ref/permute.html permute> to rearrange the order of the dimensions and <http:...

más de 14 años hace | 2

| aceptada

Respondida
Matlab Array Division
It's just d2 = 200./d1; Note the dot. This is element-by-element division (see <http://www.mathworks.com/help/techdoc/re...

más de 14 años hace | 1

| aceptada

Respondida
How to remove this error Improper assignment with rectangular empty matrix.
I can't reproduce your exact error message, but it is probably occurring because either |va| or |vb| are empty (there weren't an...

más de 14 años hace | 0

Respondida
nicer outcome from fprintf
There are two approaches you could use. One is just to specify the width of each field: fprintf(fid{i},'%12s\t%12s\t%9.6f\n...

más de 14 años hace | 0

| aceptada

Respondida
what is the normalizings in generalized eigvalues in matlab
The documentation for |eig| says that the vectors are not normalized. *EDIT*: <http://www.mathworks.com/help/techdoc/ref/qz.h...

más de 14 años hace | 0

Respondida
wrapping
You could save the changes when you unwrap and then reverse them: pw = unwrap(pold); pdiff = pw-pold; ... % change pw her...

más de 14 años hace | 1

Respondida
What are the rules for naming script files?
Check out <http://www.mathworks.com/help/techdoc/matlab_prog/f10-60729.html Variables> and the documentation for <http://www.mat...

más de 14 años hace | 0

Respondida
Handles and Function outputs?
This code is solving |rho*Cp*(du/dt) = d/dx(k du/dx)| (a heat transport equation). The terms |c, f, s| returned by |pdex1pde| co...

más de 14 años hace | 0

Respondida
For loop of symbolic variables extracting symbolic coefficients
See <http://www.mathworks.com/matlabcentral/answers/242-how-to-generate-symbolic-variables-dynamically-at-run-time How to genera...

más de 14 años hace | 0

Respondida
matrix values as text on plot
You could do all the text commands in a loop, for example: A = randn(20); x = linspace(0,1,20); y = x; pcolor(x,y,A); col...

más de 14 años hace | 0

| aceptada

Respondida
Why your question is NOT "urgent" or an "emergency"!
Just for curiosity, has anyone seen a genuinely urgent question?

más de 14 años hace | 2

Respondida
program that calls itself
See <http://www.matrixlab-examples.com/recursion.html Recursion - a conceptual example>.

más de 14 años hace | 0

| aceptada

Respondida
symprod error
Are you sure you have the Symbolic Toolbox? Try typing |ver| and see if it is one of the ones listed. If it is listed, maybe ...

más de 14 años hace | 0

Respondida
font problem ??
The default interpreter is actually TeX, and maybe that is causing your problem. Try this: h2=ylabel('$k^2/(2 \pi)$') set(...

más de 14 años hace | 0

Respondida
Help with fsolve in for loop!
The source of the error is probably your references to |x(1)| and |x(2)|, because you have defined |x| as a scalar in |syms x|. ...

más de 14 años hace | 0

Respondida
Semiautomatic complex-step differentiation of real-valued functions
There is another implementation in <http://www.mathworks.com/matlabcentral/fileexchange/11870-numerical-derivative-of-analytic-f...

más de 14 años hace | 1

Respondida
LEGEND TITLE
There is a lot of information buried in layers of handle graphics. You can do the following: hleg = legend('820mm','750mm',...

más de 14 años hace | 4

| aceptada

Respondida
problem with command solve inside a function.
When I try running this function function [a,tt] = runtest(ka,landa) [a,tt] = test(ka,landa); I get the same answer for...

más de 14 años hace | 0

| aceptada

Respondida
lsqcurvefit command window exit flag suppression
You could include |options| in your call to |lsqcurvefit| and set |Display| to 'off': opts = optimset('lsqcurvefit'); opti...

más de 14 años hace | 0

| aceptada

Respondida
contourf with no isoline
Here is an example of how to do it: [C,h] = contourf(peaks(20),10); set(h,'LineColor','none')

más de 14 años hace | 8

| aceptada

Respondida
Integration problem
You can calculate integrals with limits of |-Inf| or |Inf| using <http://www.mathworks.com/help/techdoc/ref/quadgk.html quadgk>....

más de 14 años hace | 0

Respondida
rearranging the data in separate columns when difference of 10 is found in vectors
You could do this using a cell array: % preallocate array n = ceil(max(x)/10); y = cell(n,1); % populate it for ...

más de 14 años hace | 0

Cargar más