回答済み
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 ...

約3年 前 | 0

回答済み
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...

約3年 前 | 0

回答済み
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...

約3年 前 | 0

| 採用済み

回答済み
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...

約3年 前 | 1

回答済み
Rounding a decimal down
x = [0.143 0.147]; floor(x*100)/100

約3年 前 | 1

回答済み
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 !...

約3年 前 | 0

回答済み
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'...

約3年 前 | 1

| 採用済み

回答済み
anticlockwise points coordinates sorting
A = [0 0 ; 1 0.2; 0 1 ; 0 0.6; 1 0 ; 1 1 ; 0.6 1; ...

約3年 前 | 1

| 採用済み

回答済み
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...

約3年 前 | 2

回答済み
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...

約3年 前 | 0

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

約3年 前 | 1

| 採用済み

回答済み
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...

約3年 前 | 0

| 採用済み

回答済み
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; ...

約3年 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 2

回答済み
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', ...

3年以上 前 | 1

回答済み
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...

3年以上 前 | 1

回答済み
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...

3年以上 前 | 0

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

3年以上 前 | 1

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 1

| 採用済み

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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" ...

3年以上 前 | 1

回答済み
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) ...

3年以上 前 | 1

| 採用済み

回答済み
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...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 1

| 採用済み

回答済み
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...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 0

| 採用済み

回答済み
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 ...

3年以上 前 | 0

さらに読み込む