Risposto
adding a colormap('jet') to my grapgh please help me
center=[0,0]; %Defining the center of circle ((origin)) %Plotting the first circle at different radius and here i choose from ...

circa 3 anni fa | 0

Risposto
A table of s versus t.
r=9; omega=100; b=14; t = linspace(0, 0.01, 20) % <<< use linspace instead to generate your t vector % remove the (t) on the...

circa 3 anni fa | 0

Risposto
Sorting a string according to the values of a vector of type double
It should be as simple as this unless I misunderstand what you are expecting. A = [1.1 2.3 4.4 2.3 5.1]; vegetables = {'carrot...

circa 3 anni fa | 0

| accettato

Risposto
two while loops running at same time
You can't code them as separate loops and have them run "at the same time". Depending on how you want the timing to work, you s...

circa 3 anni fa | 1

Risposto
Rounding a decimal down
x = [0.143 0.147]; floor(x*100)/100

circa 3 anni fa | 1

Risposto
Why a condition like If (~Input) changes to a complex condition with ternary operator ?
So, the original condition if (~Input) is C code and not Matlab code? If so, you should use the logical not operator which is !...

circa 3 anni fa | 0

Risposto
Using the listdlg function
You probably just need to wrap your switch/case processing in a for loop. For example: s = listdlg('ListString', {'One', 'Two'...

circa 3 anni fa | 1

| accettato

Risposto
anticlockwise points coordinates sorting
A = [0 0 ; 1 0.2; 0 1 ; 0 0.6; 1 0 ; 1 1 ; 0.6 1; ...

oltre 3 anni fa | 1

| accettato

Risposto
How to use subplot in a UIFIGURE?
When you post a question that states that you are getting error(s), you should post the complete text of the error message (ever...

oltre 3 anni fa | 2

Risposto
Text in editor window suddenly vanishes in R2022b.
I would definitely do a SaveAs to another filename in case the data is still there but just not showing. Use a different filena...

oltre 3 anni fa | 0

Risposto
Remove text after a symbol
If the titles are character vectors in a cell array: titles = ... { 'Bohemian Rhapsody - Remastered 2011' '(I Can''...

oltre 3 anni fa | 1

| accettato

Risposto
How to permanently disable warnings in MATLAB editor?
I believe you can do that by un-checking the "Enable integrated warning and error messages" checkbox under the Code Analyzer opt...

oltre 3 anni fa | 0

| accettato

Risposto
Cumulative distance vs time graph using a velocity vs time graph
You need to save the value of integ on each step of the integration. See changes below marked with % <<< clc; clear; close; ...

oltre 3 anni fa | 0

| accettato

Risposto
how to get the same result using rand
The documentation for rand states that it returns values "drawn from the uniform distribution in the interval (0,1)". If you wa...

oltre 3 anni fa | 2

Risposto
How do I replace one data column from a text file to the data column of another text file
rch = readtable('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1175438/outputrch.txt', ... 'HeaderLines', ...

oltre 3 anni fa | 1

Risposto
sum of time series performace
Your question isn't very clear but it appears that perhaps you want to do a moving average. Take a look at the documentation fo...

oltre 3 anni fa | 1

Risposto
Reading in a text file with numbers and strings in
Try using readtable instead of readmatrix. This will read in the strings properly and allow you to do your cleanup based on the...

oltre 3 anni fa | 0

Risposto
Extract numbers from char type
Or, in one line of code: s = '4.64 km'; num = sscanf(s, '%f') % num will be a double

oltre 3 anni fa | 1

Risposto
Hold a value indefinitely once a condition becomes true
One way would be to route the output of the relational operator to two places: (1) a summing junction or an OR block, and (2) a...

oltre 3 anni fa | 0

Risposto
How to have Logging in Matlab
Perhaps the diary command will do what you need. An excerpt from the documentation linked above: When logging is on, MATLAB® c...

oltre 3 anni fa | 0

| accettato

Risposto
Plotting patters using circles and a trignometric equation
k = 1:14000; a = pi*k./14000; Xk = cos(10*a).*(1-0.5*cos(16*a).^2); Yk = sin(10*a).*(1-0.5*cos(16*a).^2); Rk = 1/200 + 0...

oltre 3 anni fa | 1

| accettato

Risposto
How to remove comma from numerical data
Copy this text and paste it into a text editor. Then search and replace all of the commas with nothing. Then run that modified...

oltre 3 anni fa | 0

Risposto
How to use data in a script from a function in another.
% Example script NewBricks = UseBrickData(); % Call the function and assign the return value to the variable NewBricks disp(Ne...

oltre 3 anni fa | 0

Risposto
How to view an mlx file without using MATLAB
You can "Save as..." an mlx file to pdf, docx, html, or latex but you lose the interactivity. You will get a static "snapshot" ...

oltre 3 anni fa | 1

Risposto
How schould the matlab function be to hold an signal between two values?
Perhaps something like this in a MATLAB Function block? function out = determineStatus(in) persistent out if isempty(out) ...

oltre 3 anni fa | 1

| accettato

Risposto
How can I set x ticks for every curve in the subplot, legend for every curve and a title for the whole figure?
It looks like it works just fine except for the legend. Instead of legstr= "\theta_1_/_2 = "+(5)+"°"; try this legstr= "\th...

oltre 3 anni fa | 0

| accettato

Risposto
Automatic change of legend's arguments
labels = {'A','B','C'}; for i = [1 3] h(i) = plot(rand(10,1), 'DisplayName', labels{i}); hold on end grid on legen...

oltre 3 anni fa | 1

| accettato

Risposto
How to adjust the position of the x-axis ticks and put the angle degree on the values of the x-axis ticks?
Vec_MIS = [0.238000000000000,1.18980000000000,2.14160000000000,4.99700000000000,6.90070000000000,10.7079000000000,14.51520000000...

oltre 3 anni fa | 0

| accettato

Risposto
Generate a sinus signal and plot the output
Your tmax is huge so you are plotting many many thousands of cycles. Also, stem clutters up the plot with circles on every data...

oltre 3 anni fa | 0

| accettato

Risposto
How do you change the transparency of multiple lines using "plot" if the lines are all different colors?
h = plot(rand(5)); % example plot. When you make your plot be sure to capture the handle % now set the alpha on all the lines ...

oltre 3 anni fa | 0

Carica altro