Réponse apportée
save to. mat after reshape to [50 x1x12]
save('FileName','Varname')

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Cell array row deletion
c={'a',1,2;'b',3,4} index=strcmp(c(:,1),'a') c(index,:)=[]

plus de 5 ans il y a | 1

Réponse apportée
Removing jumps from data when plotting a graph
In your case, since you have enough data, I think you can use symbol in plot() to remove the "jump". If your old way is plot(x,...

plus de 5 ans il y a | 0

Réponse apportée
How to iterate through the alphabet like Excel does
In old versions of MATLAB, you can find that function inside xlswrite.m. I used to copy that for my own use. In R2019b, it seem...

plus de 5 ans il y a | 0

Réponse apportée
Changing frequency of input data
resample() timeseries object also has resample() method. see web(fullfile(docroot, 'matlab/ref/timeseries.resample.html')) t...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
How to rearrange data by cutting rows and placing in new columns or using cell array?
reshape()?

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
How can i add linear second-order transfer function to the simulink system?
drag and drop this block from library https://www.mathworks.com/help/simulink/slref/transferfcn.html

plus de 5 ans il y a | 0

Réponse apportée
Where is help relop?
It is true. The explanation: \Program Files\MATLAB\R2019b\toolbox\matlab\ops\relop.m is gone in R2020a, that is why "help relo...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
How to discover all submodels within a simulink model programmatically ?
Using the example model 'f14'. Play with some other options of find_system() f14; SubSysBlocks=find_system('f14','BlockType','...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How can I get archived documentation for a R2012b release?
These are the archived document. R2012b is not there. Follow link to contact support to see you can get it. https://www.mathwor...

plus de 5 ans il y a | 0

Réponse apportée
Unable to remove elements from array and I don't know why
Do the loop backward should resolve the problem. I hope you would understand the reason. for i=length(x):-1:1 Also, better to ...

plus de 5 ans il y a | 1

Réponse apportée
select values from matrix
loc=sub2ind(size(A),idx,1:size(A,2)); >> out=A(loc) out = 1 7 3 9 5

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
Variable sample time with different time values
This seemingly simple question is actually quite complex. The input data is non-periodic. To hit every value-changing data poi...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
command window change colors
Click "Preferences", then "Colors"

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
How do I keep unused root-Level Inports in the generated code
In your model configuration, search for "block reduction", un-check it. I assume you must have the root-level Inport blocks ter...

plus de 5 ans il y a | 0

Réponse apportée
Can I simulate a transfer function in simulink in real time and interact with the model using the GUI?
Yes, thought it requires this toolbox: Simulink Desktop Real-Time

plus de 5 ans il y a | 0

Réponse apportée
Error Unable to delete elements from this array because dimension 1 has fixed size 1000
You kept asking similar questions on this topic. You need to ask your question precisely and accurately. The key point for this ...

plus de 5 ans il y a | 0

Réponse apportée
Displaying images by using a variable
It can be done but less ideal. a=input('enter the number','s'); file=[a,'.jpg']; imshow(file); Better file=uigetfile('se...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Incorrect use of '=' operator
Both codes run properly if run alone. You can "clear all" and then try it. A potential problem is with inputdlg(). "agea" is a ...

plus de 5 ans il y a | 0

Réponse apportée
How to find the unused bus objects from base workspace in Simulink?
Simulink Data Dictionary (SLDD) has this capability. In fact, when you migrate base workspace to a .sldd file, it only migrates ...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
unable to get_param signal name , error in using for loop
Your code is correct, except that No "end" statement for the for-loop Remove the "{" and "}" lines (meant to enclose the for-...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
function with two inputs.
Run this to return two outputs height_cm=input('enter your height in cm: '); weight_kg=input('enter your weight in kg: ') [he...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Algorithmically create block matrices
cat() vertcat()

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Simulink can't see variables in base and model workspace
You need to add "A" as a parameter for the MATLAB Function block. Double click to open the "MATLAB Function" block editor, clic...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
License checkout failed. User/host not on INCLUDE list for Neural_Network_Toolbox.
When you see the toolbox after "ver" command, it means the toolbox is installed in your computer. You need a license file or che...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How can I plot a graph from Simulink while simulating?
Use the blocks from the Simulink, Dashboard library, e.g. Dashboard Scope block. https://www.mathworks.com/help/releases/R2020b...

plus de 5 ans il y a | 0

Réponse apportée
Remove "Offset" caption from a Simulink graph
Must be something else. I have R2020b Update 3. I tried and it didn't have "Offset=0" text. Check MATLAB preference, figure cop...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
Simulink: Dragging blocks directly into connections
Draging and dropping the block to the line will always make it auto connected. I've verified this in R2020b. You just need to be...

plus de 5 ans il y a | 0

Réponse apportée
Simulink Control Design license, license checkout failed
(1) Run this: flag=license('checkout','Simulink_Control_Design') license('inuse') (2) To check if you have "Simulink Contro...

plus de 5 ans il y a | 4

| A accepté

Réponse apportée
Loop for removing values from a column vector
%% v=[1 2 1 3 7 7 5 4 8 6 9 2]; for k=length(v):-1:2 if v(k)<=v(k-1) v(k)=[]; end end

plus de 5 ans il y a | 0

Charger plus