Réponse apportée
Unrecognized function or variable when reading an excel file.
You have initialized last = 0; but you used a if condition as if (last>0) ... p = 100*t/60; % end Which Is not sat...

plus de 5 ans il y a | 1

Réponse apportée
Jagged Sine Wave Results
%if true % code % end t = 0:0.005:1; theta = 0.1*sin((20*t)+(pi/2)); plot(t,theta);

plus de 5 ans il y a | 1

Réponse apportée
When I plot a curve the lines have little "nicks" in them. How do I fix that?
Reduce the linewidth to 2 or 3 You seem to be using 7 which is very thick

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Plot one row of x with multi rows of Y
X= 25:25:100; Y = [646 490 700 669;1530 1388 1500 1666;2586 3260 882 1704;4411 4415 2419 2142]; bar(X,Y,'stacked'); I just sh...

plus de 5 ans il y a | 1

Réponse apportée
How to plot histogram where the data is the height
%if true % code %end x = 0:10; y = [20 120 133 34 45 37 180 12 100 30 12]; % example values bar(x,y)

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How to makedisk for a three parameter weibull distribution
you are using vector of values for 2 parameters and scalar value for other parameter ... try this %if true % code %...

plus de 5 ans il y a | 1

Réponse apportée
3D Plot for an integral function in a loop
Try now ... For loops cannot take decimal increments in matlab %if true % code %end m1=5; mtmd=0.25; omg1=2*pi...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
how do I calculate all values in for loop?
%if true % code % end x = [0 2 5 7 8 9 10]; for i = 1:length(x) for j = 1:length(Tamb) Tc(j)= Tamb(j) + 0....

plus de 5 ans il y a | 1

Réponse apportée
I need help setting my current directory and loading data.
Type % if true % code % end >> pwd >> ls *.* at the command window After setting the folder path where you sav...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
Figure plote in MATLAB 2019b
Type % if true % code %end reset(gca); In command window

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
MATLAB CREATES AN EXTRA COLUMN WHILE READING A TXT FILE
Try load function instead As below values = load('n_values.txt'); You are also using same variable name as the filename. Use a...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
matlab 2019b installation error
If you think my answer worked well... Please accept the answer

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
matlab 2019b installation error
* disable the antivirus software in your pc during installation * clear or freeup disk space in your PC Ensure to extract ...

plus de 5 ans il y a | 1

Réponse apportée
Use of for loop for multiple columns
Try this way % If true % code % end clear all clc s = importdata('data.xlsx'); [R,C] = size(s) for j = 1:C ...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How can I change time data to 5-minutes intervals?
Import the timestamp sensor data from excel to a vector,say T % %if true % end T = [1:00:00 2:00:00 3:00:...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
how to integrate DLL file in simulink ???
Follow this link for more info https://www.mathworks.com/matlabcentral/fileexchange/44197-calling-shared-libraries-from-si...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
extracting timetable variables as array
tempC = timetable_csv{:}{2}; windspeed = timetable_csv{:}{3}; timestamp = timetable_csv{:}{1};

plus de 5 ans il y a | 0

| A accepté

A soumis


2D panel method for Cp distribution on airfoils
This code can produce the Cp distribution over streamlined bodies

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

0.0 / 5

Réponse apportée
Deleting within .mat file
Use clear command as e.g clear B W X Y Z or clearvars B W X Y Z in your script file or the function file in the end line ...

presque 6 ans il y a | 1

Réponse apportée
Plotting a set of rings using a single function
See also the m file for the code clearvars close all x = -100:0.5:200; y = -100:0.5:200; r = 50; theta = 0:0.1:360; for ...

presque 6 ans il y a | 0

| A accepté

Réponse apportée
How do i have a plot automatically allocate colours to lines and label them in a legend
The equation y=(n^2)*(2*r); needs to be function of variables otherthan n and r In your program n and r are used iteration co...

presque 6 ans il y a | 1

| A accepté

Réponse apportée
Adding time (time stamp) to observations
Try A = duration(0,00,00); B = duration(4,00,00); C = A:seconds(10):B

presque 6 ans il y a | 0

| A accepté

Réponse apportée
How can I plot a figure for transfer function of G(s)?
Try Num = []; Den = []; S = tf(Num,Den) You can use plot or steplot as plot(S) or stepplot(S) or according to the pl...

presque 6 ans il y a | 1

Question


Can i take the MATLAB certified associate exam online at home during COVID 19 Pandemic situations ?
Hello I would like to know whether i can take MATLAB certified associate exam online at home during ...

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

1

réponse

A soumis


Laser beam shaping : single point, three point source laser
Laser beam shaping on material /alloys specimen by single point source and superposition of three sources of different intensiti...

plus de 6 ans il y a | 1 téléchargement |

0.0 / 5
Thumbnail

A soumis


Matlab program for Joukowski Airfoil
Joukowski mapping function, Airfoil, Thickness, Camber

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

5.0 / 5
Thumbnail

Question


How can i stop the loop iteration using pushbutton callback in MATLAB GUI?
I have GUI which has pushbutton to stop the for loop iteration. the code structure for stop button callback is follows g = 1 h...

plus de 7 ans il y a | 2 réponses | 0

2

réponses

Question


How can i update data in the figure window in MATLAB GUI using pushbutton callback?
I have MATLAB GUI, which plots data in figure using pushbutton callback Even though the figure window is updating the data for ...

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

1

réponse

Question


how can i update the uitable when used within a for loop of MATLAB GUI ?
I have a MATLAB GUI, which has uitable . When i click a pushbutton, it runs the for loop. Inside the for loop i have used the s...

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

1

réponse

Question


How do i remove wide indents in MATLAB script editor ?
I am facing the wide indent problem in script editor. Even though i apply the smart indent, it still shows a large indent of th...

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

1

réponse

Charger plus