photo

Nihar Deodhar


Aktiv seit 2016

Followers: 0   Following: 0

Nachricht

Statistik

MATLAB Answers

0 Fragen
11 Antworten

RANG
2.821
of 301.511

REPUTATION
22

BEITRÄGE
0 Fragen
11 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
3

RANG
 of 21.308

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 174.911

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
I want to insert greek symbol Delta as xticklable in subplot which is a Bar chart along two other ab,cd latters.MATCODE { \Delta} has been utilised but it isn't responding in MATLAB 2013. pls guide
The following command may be included as a part of your code, or simply type this in the command window with the figure open: ...

mehr als 9 Jahre vor | 0

Beantwortet
Save a matrix into text files with different names
The following illustration might help: A=[1 2 3; 4 5 6; 7 8 9]; for i = 1:size(A,2) X_i = A(:,i); filename =...

mehr als 9 Jahre vor | 0

Beantwortet
short interruptions in motors
This could be done by sending 'zero' input to the motor for the desired time. Create a simple embedded function in simulink with...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
How to export data from simulink
This could be done by simply setting the output of simulation to be a vector. set the max number of simulation s to be perfor...

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
How to update constant value in Simulink while it is running?
The easiest way to update simulink block parameters in real time (while the model is running) is through a GUI (graphic user int...

fast 10 Jahre vor | 0

Beantwortet
Simulink "To Workspace" block only outputs last part of simulation
In order to limit/remove limit on the number of points you could tweak the model configuration parameters in simulations tab of ...

fast 10 Jahre vor | 0

Beantwortet
How can I do a transfer function for a MIMO system?
Just to clarify, the transfer function for a MIMO system will actually be a matrix of transfer functions. Lets say you have MIMO...

fast 10 Jahre vor | 2

| akzeptiert

Beantwortet
How can i get the data from 3D graph to excel sheet
I see that you have a matlab fig file finally after you process the wav file and extract the data. Assuming that you have a t...

fast 10 Jahre vor | 0

Beantwortet
'to workspace' data length question
The sample time does not dictate how many data points will be saved to work space (its better to keep it -1 so that the sample t...

fast 10 Jahre vor | 0

Beantwortet
Integer programing for minimization
Your problem could be solved using fmincon. See Matlab documentation on fmincon for more info. Set up the objective function ...

fast 10 Jahre vor | 0

Beantwortet
How to create a sequence of matrices that depend on parameters whose values change?
%Seems like you could use a simple for loop to run the code. %The delta could be set as vector: delta = 0:0.1:2; %use a...

fast 10 Jahre vor | 1

| akzeptiert