Respondida
solving a differential equation
G*x + C*dx - B = 0 same as C*x'+G*x-B=0 launch MuPAD mphandle=mupad Symbolic toolbox needed. MuPAD solves your OD...

alrededor de 10 años hace | 1

| aceptada

Respondida
How to write a program to generate a data file containing the names and corresponding telephone numbers of the costumers?
just recommended to another MATLAB CENTRAL user to try the class TABLE. The starter example from MATLAB help: LastName = {'...

alrededor de 10 años hace | 0

Respondida
Two-terms Exponential model
you really need to define the window where you want to approximate the exponential function with a polynomial otherwise the same...

alrededor de 10 años hace | 0

| aceptada

Respondida
Replacing numbers in dataset by string
Quoting from Mathworks documentary: http://uk.mathworks.com/help/stats/dataset-class.html?s_tid=srchtitle .. The dataset dat...

alrededor de 10 años hace | 0

| aceptada

Respondida
Importing a .csv to matlab, delimiter problem
try to save the file as SHipData.xlsx and the following: filename3='ShipData.xlsx' [num,txt,raw]=xlsread(filename3) t...

alrededor de 10 años hace | 0

Respondida
Create Isotropic volume from 3D data
correct me if wrong but you want to basically transform a non isotropic voxel volume into an isotropic voxel volume, as detailed...

alrededor de 10 años hace | 0

Respondida
Moving the data tip horizontally with arrow keys
remove axis ij this command is useful when working on images that have [0,0] on top left corner of the image, which is...

alrededor de 10 años hace | 0

Respondida
How do I model this equation? Plotting position of poles?
have a look to the poles and zeros of the roots of your polynomial when sweeping the parameter k from 1 to 22 (sqrt(480)~22 ok?)...

alrededor de 10 años hace | 1

Respondida
Question about user input error
try converting all inputs with uint. If the return value of any input character does not belong to uint64('0123456789') then...

alrededor de 10 años hace | 0

Respondida
Structured Cell array assignment question
A.a and B.a are type struct. How do you expect to be able to assign B.a=A.a without making sure that the structures have same...

alrededor de 10 años hace | 0

Respondida
How to extract time and date data from huge text file?
your data file has a format that allows to import text without while fgetl strfind and fscanf filename='Nikhil.txt' de...

alrededor de 10 años hace | 0

| aceptada

Respondida
how to convrt the FWHM value to picoseconds when given in nanometers for optical gaussian pulses.
Mr Egan has posted in Mathworks website the following function: function width = fwhm(x,y) % function width = fwhm(x...

más de 10 años hace | 1

| aceptada

Respondida
How to discard all punctuation from a text file
Star Stride is right but perhaps Fateme wants to keep the spaces, because space is not punctuation spaces will help reading t...

más de 10 años hace | 1

| aceptada

Respondida
Combining 2 Matrixes to Run in Large Data Set
Does it make sense to 1.- assign clearly differentiated names to both time windows of interest. Instead of calling them both...

más de 10 años hace | 1

| aceptada

Respondida
Strange error when trying to solve a set of ODEs
could you please start by hanging the complete code you use? the one that results into the error code you have already descri...

más de 10 años hace | 0

Respondida
Signal generation using for loop
1.- generating base pulse with SIMULINK: 1.1.- manually following, one way to generate the base pulse of the cyclic signal ...

más de 10 años hace | 0

Respondida
Find the nearest whole number and whole number+/-0.5 for a given value
may be you find the following useful: v0=100*rand v0_floor=floor(v0) v0_ceil=ceil(v0) v5=.5*(v0_floor+v0_ceil) ...

más de 10 años hace | 0

Respondida
How to use "trapz" on a double integral?
try x1=-2;dx=.1;x2=2; y1=0;dy=.1;y2=3 [X,Y]=meshgrid(x1:dx:x2,y1:dy:y2) Z=X.^4-3*X.*Y+6*Y.^2 x=x1:dx:x2;y=y...

más de 10 años hace | 2

Respondida
MATLAB Certification (associate and professional)
One of the many possible answers to Problem 1 of 8, in compressed folder available online, exam questions examples available fro...

más de 10 años hace | 0

Respondida
Dijkstra's algorithm problem
In GitHub I found the following: function [dist,path] = dijkstra(nodes,segments,start_id,finish_id) %DIJKSTRA Calculates...

más de 10 años hace | 1

Respondida
how to create a white image?
max allowe [255 255 255] I repeat, the range is [0 255], 256 values.

más de 10 años hace | 0

Respondida
Inverted zeroes in bode plots
so you mean POLES, do you mean by inverted zero, a POLE?

más de 10 años hace | 0

| aceptada

Respondida
How to solve this definite integral in MATLAB?!!
Hi Mamali what is one of the most useful techniques of probability? *if you don't know, assume uniform distribution* W...

más de 10 años hace | 1

Respondida
URG please answer this question
<</matlabcentral/answers/uploaded_files/41897/DE%20-%20exercise%20Simulink%20Circuit.jpg>> te sirve este circuito? es inesta...

más de 10 años hace | 1

| aceptada

Respondida
How to scale the length of the x-axis/graph?
or: ax=gca ax.XLim or: axis([xmin xmax ymin ymax]) or: xlim([0 100]) to prevent limits changin...

más de 10 años hace | 0

Respondida
How to select best possible modulation technique for a particular fixed bandwidth???
You just asked a really broad question. You should add more details, as is it a narrow band case? you are either 1. ...

más de 10 años hace | 0

Respondida
How to Extract High density pixels in a RGB Image?
perhaps you mean high saturation pixels. highly saturated colour is that with low or no contents of white. White is flat c...

más de 10 años hace | 3

| aceptada

Respondida
I have image with black background and white lines. How to find co-ordinate (x,y) of end points of white lines on that image?
Hi, Perhaps LAKSHMANAN ADAIKKAPPAN does not have the Image Toolbox. I tried with R2012 image toolbox and your code did not fin...

más de 10 años hace | 0

Respondida
Verify my For Loops
N=3 M=4 A=zeros(N,M) for i=1:1:N for j=1:1:M A(i,j)=i+j end end N=3 M=4 A=z...

más de 10 años hace | 0

Respondida
Area Under Curve (or Between Curve)
I understand the time reference is in sample=data(:,2) the function to integrate is in w=data(:,3) correct? and the z=13.2...

más de 10 años hace | 0

| aceptada

Cargar más