Réponse apportée
Creating a run log/count with a for loop within a table.
I think this is what you are looking for: switch_list=zeros(length(data),1); switch_list(2:end)=data(2:end,2)-data(1:end-1,2);...

presque 6 ans il y a | 0

Réponse apportée
How to extract values from an array?
val1 contains the numbers x(1), x(2) x(3) and x(4). val2 contains the numbers between x(1) and x(4) with steps on 1, but x(4) is...

presque 6 ans il y a | 0

Réponse apportée
How do I find a center of rotation having a set of 3D points ?
If each point represent the same amount of mass, the center of rotation is just the average position of all poisitions, when eac...

presque 6 ans il y a | 0

Réponse apportée
how can i split a 400*400 matrix into smaller one
what about this: num_list=0:40:400; data=[]; Image=zeros(400); for a=1:numel(num_list)-1 for b=1:numel(num_list)-1 ...

presque 6 ans il y a | 0

Réponse apportée
save data to a new row in a table for each iteration of a for loop
something like this might be useful for you: data=[]; for i=1:0.1:10 data(:,end+1)=[i^2;i^3];%just example of data end

environ 6 ans il y a | 0

| A accepté

Réponse apportée
It's posible to make figure always maximized and block minimized option?
You can do this with position function of a handle: h=figure(); h.Position=[1,41,1536,749] % depends on your screen size, 1 41...

environ 6 ans il y a | 0

Réponse apportée
How not to delete one element of a figure when using cla?
Maybe you can delete one of the 'Children' of the figure. type: h.Children and check if there is any data that can be delete...

environ 6 ans il y a | 0

Réponse apportée
Computing an specific numerical Integral
I think you should use a Riemann integral to estimate the answer of this integral. Or maybe wolfram Mathematica can solve it f...

environ 6 ans il y a | 0

Réponse apportée
How to copy files form one directory to another
cd('source_folder') filenames=dir; for i=3:length(filenames) copyfile(filenames(i).name,'destination_folder') end

environ 6 ans il y a | 0

A soumis


steppermotor
Easy control of a bipolar (4 cable) stepper motor, power by usb port and controlled with audio signal via the audio jack output....

environ 6 ans il y a | 3 téléchargements |

0.0 / 5
Thumbnail

Réponse apportée
Changing dimensions of a cell array
You can do this with: ' field=field';

environ 6 ans il y a | 0

| A accepté

Réponse apportée
Why wont matlab start up on my laptop?
I have the same problem sometimes. On my computer this is caused by a wrong target location of my desktop shortcut. The shortcut...

environ 6 ans il y a | 0

Réponse apportée
Can't figure out what I am doing wrong. Looking to find square root using the equation given x=(x+x/a)/2. I also feel like I am not making use of the approximation errors ea and es.
just use this to solve x=(x+x/a)/2 a=input('') syms x xsol=vpasolve(x==(x+x/a)/2,x)

environ 6 ans il y a | 0

Réponse apportée
How do you randomly choose a grey bar in picture to turn white?
This is most likely not the best way to do it but it works: picture=zeros(50,50); picture(10,10:12)=100; picture(20,10:12)=10...

environ 6 ans il y a | 1

Réponse apportée
function serialportlist is not working
I do not know if i have such a device. I want to play audio files via different USB speakers, do you have any tips how to do thi...

environ 6 ans il y a | 0

| A accepté

Question


function serialportlist is not working
When I use the function 'serialportlist' to identify the serial ports on my laptop i get a 1x0 empty string array. ports=serial...

environ 6 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
How can I extract values from an N x 2 matrix?
What about this?: cord=zeros(1,2); for i=1:100 xx = input('Enter x coordinates in the form [0]'); yy = input('Enter ...

environ 6 ans il y a | 0

Réponse apportée
Replace -99 with NaN
x=[1 2 -99 3 4 -99 5 6 -99]; x(x==-99)=NaN;

environ 6 ans il y a | 0

Réponse apportée
Custom colour bar, excluding the Blue from RGB.
Maybe you can try this: h=figure(); A = [200 200 200 200 200; 200 200 200 200 200; 200 200 100 200 200; 200 200 200 200 200; 2...

environ 6 ans il y a | 0

Réponse apportée
Error: Inner Matrix Dimension Must Agree
you should use " .* " instead of " * " .

environ 6 ans il y a | 1

Réponse apportée
Index exceeds matrix dimensions error
You should use ( and ) not { and }. Try this code: t=zeros(10,1); for n=1:10 if n/2>2 t(n)=t(n-1)+1 end end

environ 6 ans il y a | 0

| A accepté

Réponse apportée
How can I get the column number of a matrix with smallest error to my value?
Mybe you can use: [x,y,z]=find(....)

environ 6 ans il y a | 0

Réponse apportée
Efficient way of selecting columns of a matrix
You can get the data from different columns also in two (maybe more?) ways: a=[1:10;11:20;21:30]; tic for i=1:10000 a(:,...

environ 6 ans il y a | 0

Réponse apportée
How can I convert all string cells in a table to numerical values?
If you use the import data tool, you can chose to ouput the data in matrix instead of a table. With this tool you can also gene...

environ 6 ans il y a | 1

| A accepté

Réponse apportée
How can I use a loop to maximize correlation of multiple graphs?
Maybe something like this can help you: clear Y_data=[ones(1,40)*-6,-6:-2/20:-8,ones(1,140)*-8]; %just an example for x1=1:19...

environ 6 ans il y a | 0

| A accepté

Réponse apportée
Why does cumtrapz return negative values?
Your X and Y are from high value to low values, resulting in negative areas. use fliplr() to mirror arrays X and Y. X=[0.5056 ...

environ 6 ans il y a | 1

Réponse apportée
Adding values from columns 1:i for each column for a new matrix of the same size
Something like this? matrix=[1 2 3; 1 2 3; 1 2 3; 1 2 3]; for i=1:size(matrix,2) matrix_new(:,i)=sum(matrix(:,1:i),2); e...

environ 6 ans il y a | 0

Réponse apportée
input image without writing a path directory in the code
maybe you can use this: https://nl.mathworks.com/matlabcentral/fileexchange/73801-adding-all-subfolders-of-a-certain-base-folde...

environ 6 ans il y a | 0

A soumis


Adding all subfolders of a certain (base)folder to the path.
This code will add every subfolden within a certain base folder to the searchpath.

environ 6 ans il y a | 1 téléchargement |

0.0 / 5

Réponse apportée
Draw horizontal lines using for loop on set of images
Maybe this works: Color=[255,255,0]; %color in 8bit, [255 255 0] is yellow width=3; %width of the line Line_Y_coor=[500 60...

environ 6 ans il y a | 1

| A accepté

Charger plus