Answered
some problem in GUI
<https://in.mathworks.com/matlabcentral/answers/342161-create-new-gui-which-opening-on-the-window#answer_268652>

8 years ago | 0

Answered
how to move the images from different folders into one folder
<https://in.mathworks.com/matlabcentral/answers/245959-how-to-read-text-files-from-different-sub-folders-in-a-folder#answer_1941...

8 years ago | 1

Answered
설치를 했는데 실행이 안되요
Better contact Mathworks support team by clicking the <https://in.mathworks.com/company/aboutus/contact_us.html?s_tid=gn_cntus *...

8 years ago | 0

Answered
Why does my vector turn into a single number in a FOR loop
But it is not efficient use loops , better to use logical indexing instead as mentioned above x=randi(100,1,50) for i =...

8 years ago | 0

Answered
MATLAB has encountered an internal error and needs to be closed.
<https://in.mathworks.com/matlabcentral/answers/284450-why-does-my-browser-freeze-or-crash-when-accessing-matlab-online#answer_2...

8 years ago | 0

Answered
How to activate the scanner using MATLAB?
<https://www.mathworks.com/matlabcentral/answers/183917-as-i-connect-a-scanner-with-matlab#answer_171891> <https://www.math...

8 years ago | 0

Answered
Save ROI files or save XY coordinates to .TXT file
What happens when you use dlmwrite ()

8 years ago | 0

Answered
Is it possible to set all data(n).x = []; without a for cycle?
data(1:N).x = []; %edited after Stephens comment

8 years ago | 0

Answered
distribution of consecutive numbers
load matlab.mat u = unique(x1) Expected_result = histc(x1,u) consecutive_numbers_and_their_repetition = [u Ex...

8 years ago | 0

Answered
Hello everyone, i want to simplify an equation (eq), how can I simplify in a variable equation in Matlab?
syms p q r(t1) a c r(t2) p = ((1)./2.*(2+3.*(r))).*((2+3.*(r)).*(1-r).*a+(1+r).*(2+3.*(r)).*c+(1+r).*r(t1)+(1+r).*r(t2)); ...

8 years ago | 0

| accepted

Answered
Function error "The expression to the left of the equals sign is not a valid target for an assignment."
clear clc clf %setting given values %Note: all initial values for t = 0, are move up to 1 since this is %matlab...

8 years ago | 0

Answered
Matlab graphic crashes error code: 0xC0000409 - dump file attached
<https://www.mathworks.com/matlabcentral/answers/100161-why-does-matlab-crash-when-trying-to-produce-a-plot-run-bench-or-pcolor#...

8 years ago | 0

Answered
Vector must be the same length error
Sizes of B0005.cycle(i).data.Volt and SoC should be the same if you want to plot them if not make some change such that they are...

8 years ago | 0

| accepted

Answered
Getting Error: Warning: Unable to find explicit solution.
There is nothing wrong in your code but Matlab is not able to solve the above equation , tried it in Wolfram wasn't able to solv...

8 years ago | 0

| accepted

Answered
how can I write this simpler? (attachment)
a = input('Please enter amount 1~100c') x = a/25 y = floor((a)/25) x1 = x/10 y1 = floor(x/10) x2 = x1...

8 years ago | 0

| accepted

Answered
How to display 70 128*128 images in Matlab from a mat file
See <https://www.mathworks.com/help/matlab/import_export/process-a-sequence-of-files.html *Processing sequence of files*>

8 years ago | 0

Answered
Write a function with three input arguments: a vector, math handle, plot handle?
x=-pi:0.01:pi hw10(x,@sin) %function calling function hw10(x,fhand) y=fhand(x); plot(x,y); end

8 years ago | 0

| accepted

Answered
How to call multiple inputs for multiple variables.
<https://www.mathworks.com/matlabcentral/answers/90569-how-to-enter-multiple-values-for-one-input-prompt#answer_100027>

8 years ago | 0

Answered
Find peaks in a column and retaining corresponding rows
[idy,idx]=find(findpeaks(data(:,2))) x=data(:,1) x(idy)

8 years ago | 0

Answered
Plotting the magnitude and phase of a piecewise fuction
syms x y = piecewise(x<-1, sym(-j*(3/2)*exp(pi/4)), x>1, sym(j*(3/2)*exp(pi/4)), 0) figure fplot(abs(y)) title('...

8 years ago | 0

| accepted

Answered
Argument on 2 vectors without using for loop
A=[10 22 31 14 55 16 47 18]; B= [1 2 1 1 1 2 1 2]; C=A(B==1)

8 years ago | 0

| accepted

Answered
How should I fix this function?
main2(1,10) %calling function here function rMatrix = main2(startN,endN) if isreal(startN) == 1 && isreal(endN)...

8 years ago | 0

Answered
How can i save a matrix in a txt file and also in .png format?
use writetable() or dlmwrite()

8 years ago | 0

Answered
How to populate an array with the indexes of another array?
ResAmp = H2dot(indices)

8 years ago | 0

| accepted

Answered
How to select true values ?
>> A=[-1,2,3,4,-5] B= [-6,-7,8,9,10] i1=A<0; i2=A>0; i3=B<0; i4=B>0; AA= A(i1 & i...

8 years ago | 1

| accepted

Answered
Undefined function or variable 'strel'.
strel is a function in ImageProcessing toolbox make ,sure you have it. see <https://in.mathworks.com/help/images/release-no...

8 years ago | 0

Answered
How to simplify symbolic calculation
see <https://in.mathworks.com/matlabcentral/answers/168162-how-can-i-round-the-coefficient-of-a-term-containing-symbolic-variabl...

8 years ago | 0

Answered
Insufficient number of outputs from right hand side of equal sign to satisfy assignment
[status,sheets,xlFormat] = xlsfinfo(filename) %correct calling of the syntax

8 years ago | 0

Answered
How can i get the activation key?
you can get it by contacting the IT department in your university

8 years ago | 0

Load more