질문


how to find the middle of rectangular pulse?
the middle in x axis in this plot: <</matlabcentral/answers/uploaded_files/20425/untitled.jpg>>

대략 10년 전 | 답변 수: 0 | 0

0

답변

질문


how to use randperm with a seed?
while using randperm function i need matlab to remember the previous values and not to repeat them in the next run (inside a loo...

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


how to create function without having to use all the inputs in the script
i have a function with many inputs how can i write this function so i would not have to fill all the inputs? for example now i...

대략 10년 전 | 답변 수: 2 | 0

2

답변

답변 있음
how to save gif animation with white or transparent background?
is it even possible?

대략 10년 전 | 0

질문


how to save gif animation with white or transparent background?
when i save gif as you can see in this code: https://dl.dropboxusercontent.com/u/38094905/Shape_animation_script.m the bac...

대략 10년 전 | 답변 수: 2 | 0

2

답변

질문


svd prescision is very bad.
it appears to be that when i use SVD i loose prescision how can i avoid loosing prescision and use svd function? [U,S,V]=s...

대략 10년 전 | 답변 수: 2 | 0

2

답변

질문


how to turn elements in matrix to 0?
i have this matrix: <</matlabcentral/answers/uploaded_files/19154/Screenshot%202014-10-08%2020.25.06.png>> arround this ...

대략 10년 전 | 답변 수: 2 | 0

2

답변

질문


how to avoid crashing the computer while running heavy scripts?
sometimes when i run a heavy calculation with huge Matrics the computer start to run slowly if i need to stop the program i usua...

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


how to read CSV file in matlab while ignoring the first line
hi i have this csv file with one header that i dont need and two columns of numbser that i need: <https://www.dropbox.com/s/oq...

대략 10년 전 | 답변 수: 2 | 0

2

답변

질문


how to save multidimantional matrix as structure?
how to save multidimantional matrix as structure? i get this error: >> save('filename','H') Index exceeds matrix dimens...

대략 10년 전 | 답변 수: 0 | 0

0

답변

질문


acces indexes of Multidimensional arrays while using index of elements in a vector?
i have a vector called L the vector contain indexes also i need to use those indexes while writing the totl matrix MAT(L) in...

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


trying to rearange a matrix with 2 vectors of indexes and one vector of values
i have 2 vectors of rows and columns location in the destination matrix and one vector E where all the values are located, and...

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


how to read text file and to ignore the first 10 rows and to take only the 4rth and 5th columns?
how to read text file and to ignore the first 10 rows and to take only the 4rth and 5th columns? from this file: http://iopsci...

대략 10년 전 | 답변 수: 2 | 0

2

답변

질문


decresing decimal point of integer
how can i do this? i have this number: 1.23484057 and i only need it to be 1.23

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


values of randi function repeat themselves
while using the function randi that generate random integers uniformly disterbuted i sometimes get in the output vector the same...

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


how to set the ticks in the colorbar to be automatic and as many as possible?
i'm trying to use as many ticks in the colorbar doing so manualy lead to unexpected resault such as: <</matlabcentral/answe...

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


how to change the font size in a plot (only for the axes numbers)?
as you can see in the attached image i need to change only the size of the numbers not the title or the colorbar how can i do ...

10년 초과 전 | 답변 수: 2 | 0

2

답변

질문


how to round up and down?
i have the folowing matrix ans = 0 0 0 0 -0.2500 0 0 0 0....

10년 초과 전 | 답변 수: 1 | 0

1

답변

질문


how to sum matrics inside a cell array?
i have 4 matrics inside a cell and i need to sum them all currenyly i use this: R=R{1}+R{2}+R{3}+R{4} the original R is...

10년 초과 전 | 답변 수: 1 | 0

1

답변

질문


how to sum matrics inside a cell array?
i have 4 matrics inside a cell and i need to sum them all currenyly i use this: R=R{1}+R{2}+R{3}+R{4} the original R is...

10년 초과 전 | 답변 수: 3 | 0

3

답변

질문


why imagesc display the matrix in black and white?
during a calculation of a complex matrix inside exp function i recived the following resault as seen in the attached image below...

10년 초과 전 | 답변 수: 1 | 0

1

답변

질문


how to identify if array is a string?
i need to identify if array is a string i tried to use a=whos(A) any suggestion?

10년 초과 전 | 답변 수: 1 | 0

1

답변

질문


what is the difference between inv() and \ (the backslash) ?
what is the difference between those functions and which one is more precise? sometimes matlab show warning while using the ...

10년 초과 전 | 답변 수: 2 | 2

2

답변

질문


how to identify a 3d matrix?
by using the function: MAT=imread('image.jpg'); sometimes (if the image isn't in grayscale) i get output of 3D matrix (R...

10년 초과 전 | 답변 수: 2 | 0

2

답변

질문


how to change one part of the string to NOT italic font?
i have this code: xlhand = get(gca,'xlabel');set(xlhand,'string','string and not italic',... 'fontsize',15,'Font...

10년 초과 전 | 답변 수: 1 | 0

1

답변

질문


problem of Accuracy in vectors
when i try to create a vector using (for example): x=0:0.5000000001:3 x = 0 0.5000 1.0000 1...

10년 초과 전 | 답변 수: 2 | 0

2

답변

질문


i need to change a mathematical formula inside a function from a script
hi, i need to change a mathematical formula inside a function from a script. i think i shuld use a syms, so far i haven't real...

10년 초과 전 | 답변 수: 1 | 0

1

답변

질문


is there another data type other then double/single/uint with less memory requirements?
i have a problem with big matrics (20e3 by 20e3) currently they take too much ram, i guess that the problem has something to do ...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


Undefined function 'exp' for input arguments of type 'uint8'
because i use a big variables (matrics in the size of 20e3 by 20e3), i found that by changing the variables to uint8 for exampl...

거의 11년 전 | 답변 수: 1 | 0

1

답변

답변 있음
Symbolic math- substitute a derivative function with subs()?
why don't you sub one char at a time?

거의 11년 전 | 0

더 보기