Beantwortet
Sort & Index matrix for highest values in row
you mean you want only first high values in each row right?? y=zeros(size(A,1),size(A,2)); for i=1:size(A,1) x=so...

mehr als 6 Jahre vor | 0

Beantwortet
Undefined function 'log10' for input arguments of type 'embedded.fi'.
to get log10 for numeric data you could use this old rule log(x) to base y = ln(x)/ln(y) so log10(x) you can change it ...

mehr als 6 Jahre vor | 0

Beantwortet
Plot the lines of the image into graphs
if you select them you could use <https://www.mathworks.com/help/images/ref/bwselect.html bwselect> command

mehr als 6 Jahre vor | 0

Beantwortet
Numerical Approximation to the continuous time fourier transform
the error is saying that it can't use fft for syms type check what fft work on from this page <https://www.mathworks.com/h...

mehr als 6 Jahre vor | 0

Beantwortet
how to plot vertical dotted line ??
x=your_value*ones(1,length_of_y); plot(x,y)

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
the meaning of @ in this equation?
@(x) : define variable x as anonymous variable so that we can we easily write our equations

mehr als 6 Jahre vor | 0

Frage


connect motor to arduino/simulink PID controller
Hello I have simulink for PID controller I want to connect it to arduino/simulink How to connect and sense motor's spee...

mehr als 6 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Connect motor to arduino/simulink controlled by fuzzy
Hello I have a simulink for fuzzy system I want to send data from it to motor by arduino/simulink how and how can I sense ...

mehr als 6 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Genetic - Fuzzy Initial Generations
Hello Every one I connected a genetic algorithm with Fuzzy on electrical simulation and it worked beautiful but when I in...

mehr als 6 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
how to merge 2 excel files to get different values as result
simple method is to read and save the two excels in 2 variables x1=xlsread('Sheet1.xls'); x2=xlsread('sheet2.xls'); i...

mehr als 6 Jahre vor | 0

Beantwortet
i do not find the run button on my simulink model?
press F5 or restart the matlab

fast 7 Jahre vor | 0

Beantwortet
Dating the X-axis of a plot
axis ticks and labels <https://www.mathworks.com/help/matlab/creating_plots/change-tick-marks-and-tick-labels-of-graph-1.html...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
How Run the GUI by typing imanalysis_gui in Matlab's command window
The coder type in last code the next message

fast 7 Jahre vor | 0

Beantwortet
Why are the results produced by fft2 and those produced by fft different?
use tic toc commands tic ... your code... t=toc; % time in second freq=your images/t

fast 7 Jahre vor | 0

Beantwortet
Making a loop with 3 variables
why loop??? use this beautiful method a=1:5; b=30:100; c=20:30; [a,b,c]=meshgrid(a,b,c); y=a.^2+8*b+2.*c....

fast 7 Jahre vor | 2

| akzeptiert

Beantwortet
Draw a line with an angle
%L is the length %angle is alpha x2=x+(L*cos(alpha)); y2=y+(L*sin(alpha)); plot([x x2],[y y2])

fast 7 Jahre vor | 6

Frage


play simulink from 2016 to 2014
Hello every one I have made code and connected it to fuzzy simulink using command sim It worked perfectly on MatLab R2016b...

fast 7 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Gui Table With Editable Column Names
set(handles.uitable_tag,'ColumnName',{'any' 'name' 'you' 'want'})

fast 7 Jahre vor | 0

Frage


media processing level up
Hello every one I have learned basics of media processing , and I want to level my self up How can I do this?

etwa 7 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
could not get WebGL context error
opengl info Version: '…' Vendor: '…' Renderer:...

etwa 7 Jahre vor | 0

Beantwortet
could not get WebGL context error
<</matlabcentral/answers/uploaded_files/70214/Screenshot%20from%202017-02-18%2000-57-07.png>> <</matlabcentral/answers/upload...

etwa 7 Jahre vor | 0

Frage


could not get WebGL context error
Hello Everyone I ran an example code given at <https://www.mathworks.com/help/matlab/ref/uiaxes.html UIAxes plot> on Ubuntu ...

etwa 7 Jahre vor | 3 Antworten | 0

3

Antworten

Frage


get certification for my tutorial's blog
Hello I have my new blog in Arabic for matlab How can I ask MathWorks to make it certificated ?? Like official Fan Site...

etwa 7 Jahre vor | 1 Antwort | 0

1

Antwort

Gesendet


Clock Wise Rotaion
Square Matrix ClockWise Rotation

etwa 7 Jahre vor | 2 Downloads |

Thumbnail

Gesendet


Secant Method GUI
Finding root using Secant Method

etwa 7 Jahre vor | 2 Downloads |

Thumbnail

Beantwortet
m1(t)=A1cos2πf1t m2(t)=A2cos2πf
A1=input('A1='); A2=input('A2='); t= %vector f1=input('f=2'); f2=input('f=2'); m1=A1*cos(2*pi*f1).*t m2=A2*c...

mehr als 7 Jahre vor | 0

Beantwortet
Loop For & save result
for i=1:50 result(i)= %if equation result{i}= % if strings end

mehr als 7 Jahre vor | 0

| akzeptiert

Frage


kalman filter for double data
I have a data without steady state system How can I kalman it

mehr als 7 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
after install ubuntu matlab (win 10 & r2016) is stuck at intiallizing
It just work with own after re install The computer checked my drives so it worked again

mehr als 7 Jahre vor | 0

| akzeptiert

Beantwortet
How to use fourier transform in simulink
I remember i saw fft block before in simulink

mehr als 7 Jahre vor | 0

Mehr laden