Community Profile

photo

Laurent


Actif depuis 2013

Followers: 0   Following: 0

Contact

Statistiques

All
  • Knowledgeable Level 3
  • 3 Month Streak
  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

A résolu


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

plus de 9 ans il y a

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

plus de 9 ans il y a

A répondu
How can I replace a specific number (row/column) in .dat file
It depends on how your data is stored in the .dat file. If it is ASCII, you can load it using mydata=load(Filename,'-asc...

presque 10 ans il y a | 0

A répondu
plotting two figures side by side
You can use subplot. First create a figure figure; and then subplot(1,2,1) %make here your first plot su...

presque 10 ans il y a | 4

| A accepté

A répondu
White balance tool in Photoshop
Maybe it is better to ask your question in a Photoshop related forum. Anyway I don't think Photoshop will tell you the exact alg...

environ 10 ans il y a | 0

A répondu
1000 paths of Brownian motion
You have to set the correct size of W before you do the loop. So instead of W=[]; you should use something like: W=zeros(K+...

plus de 10 ans il y a | 0

A répondu
Converting velocity, time, and force data into acceleration
Assuming that you have a time series of velocity values, you could just calculate the derivative of the velocity by using the co...

plus de 10 ans il y a | 0

A répondu
how can I plot the following function in matlab without symbolic toolbox?
In addition to the answer of the cyclist: You set Sum=0 outside of the loop, which means that it will never be reset to 0 for...

plus de 10 ans il y a | 1

A répondu
how to filter data in matlab like in excel
You can use indexing. For example: tenpm=data(data(:,1)==22,2); data(:,1)==22 selects only the rows in which the first c...

plus de 10 ans il y a | 4

| A accepté

A répondu
how to stop logical operators?
Instead of a for-loop, you can use a while loop. Something like this: while abs((t(i)-t(i-1)))>10^-6 your calculati...

plus de 10 ans il y a | 0

A répondu
Filesize of an image
Your image is stored as a jpg-file, which usually means that the image is compressed. In this case using the Huffman method (Cod...

plus de 10 ans il y a | 0

| A accepté

A répondu
How can I generate a matrix?
a={2,5,2,4,2,3,4,4,8}; b={1,3,1,3,4,2,3,3,2}; yourmat=zeros(8,5); for ii=1:length(a) yourmat(a{ii},b{ii})=you...

plus de 10 ans il y a | 1

A répondu
How to open the gray scale image of Digital surface model (DSM)?
What if you use imagesc to show your image? There might be a problem with the scaling of your image. imagesc(I)

plus de 10 ans il y a | 0

Question


Curve fitting tool does not show main plot in Matlab 2013b
Dear all, When I use the Curve Fitting Tool in Matlab 2013b on MacOS X it does not show me the 'Main Plot' after fitting a cu...

plus de 10 ans il y a | 1 réponse | 0

0

réponse

A répondu
Attempted to access betaI(2.72775e+06); index out of bounds because numel(betaI)=1
Without running your code, I see that you define betaI as a scalar: betaI = 0.170; But then in your function you use ...

plus de 10 ans il y a | 0

| A accepté

A répondu
How do i get past the dimension mismatch on line 36?
The problem is with your calculation of 'half'. It uses the variable 't', which is an array (1x1000) and therefore 'half' will b...

plus de 10 ans il y a | 0

| A accepté

A répondu
To find the exponent for a data
If you want to do this only once, you could use the Curve Fitting Tool using the command 'cftool'. You only need a variable with...

plus de 10 ans il y a | 1

| A accepté

A répondu
Discrete derivative via Matlab
If you want to calculate the derivative like this, you have to divide the change in y (dy) by the change in x (dx), so dy/dx. Yo...

plus de 10 ans il y a | 1

| A accepté

A répondu
intersect(A,B) returns the data with no repetitions
You can use the function 'ismember' for this purpose. From the help: LIA = ismember(A,B) for arrays A and B returns an...

plus de 10 ans il y a | 0

A répondu
How to compress a matrix using EZW Algorithm ?
Here is the matlab implementation of the EZW Algorithm: http://www.mathworks.com/matlabcentral/fileexchange/19296-ezw-embedde...

plus de 10 ans il y a | 0

A répondu
Can someone help me to implement this algorithm I have tried to but get errors
It depends a bit on what result you want, but if you change that line to if strcmp(reekskar{i},kodetabel{k}) the script...

plus de 10 ans il y a | 0

A répondu
Creating matrix with loops
You don't need loops to get the matrix you want, you can make the individual columns by playing a bit around with divisions and ...

plus de 10 ans il y a | 0

A répondu
Generate specific matrix from an array
Below I show one way to do it. For big arrays there might be a faster way if you don't use for-loops, but for small n there is n...

plus de 10 ans il y a | 0

A répondu
Matlab Code for GUI
This is a very general question, here are some examples on how to create a list box, a push button and many other components in ...

plus de 10 ans il y a | 0

A répondu
How to plot the growth of interest in matlab (time on x-axis and current balance on y-axis)?
I'll give you one hint, because it seems to me that this is homework. t=[0:1:30];

plus de 10 ans il y a | 0

A répondu
How to create Gauss noise within the interval
This is not possible, since the output of randn can be in principle any value between -Inf and +Inf. Depending on what you w...

plus de 10 ans il y a | 2

A répondu
Plotting Two Gaussians on One Histogram
Hi, you can create the two shifted histograms with randn. gauss1=randn(100000,1)/2+1; %create gaussian around +1 gaus...

plus de 10 ans il y a | 0

| A accepté

A répondu
input a string into a vector when n=odd number
Hi, First, you can't just put strings into a vector with numbers, you will need to use a cell array, so you need to define yo...

plus de 10 ans il y a | 0

A répondu
how to apply imhist () for matrix <768x1024x3 uint8> ,how to use imhist for 3d matrix
If you want to make a histogram of all your values together you can do something like this: testim=uint8(rand(768,1024,3)*2...

plus de 10 ans il y a | 0

A répondu
out = x; "Not enough input arguments"
How did you call your function? It seems you forgot to put input arguments, in this case 'x'. I would try to call your functi...

plus de 10 ans il y a | 1

Charger plus