s
Followers: 0 Following: 0
Statistics
RANK
36 188
of 295 569
REPUTATION
1
CONTRIBUTIONS
14 Questions
3 Answers
ANSWER ACCEPTANCE
50.0%
VOTES RECEIVED
1
RANK
of 20 247
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154 105
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
I used find_system to get a list of Mux blocks present in a subsystem. There are 3 mux blocks named differently, the command returns the names in alphabetical order. Is there a way I can get them in the order they are present instead?
list = find_system(subsystem_path,'SearchDepth', 1, 'BlockType','Mux') which returns d , m & v but the order in which the m...
mer än 5 år ago | 0 answers | 0
0
answersQuestion
I see vector_size as the block parameter.How can I change it? How is it different from block name? add_line command doesn't recognize vector_size
mer än 5 år ago | 0 answers | 0
0
answersSum specific rows of an array
clc; clear all; A = [0.2 2 3;1 3 4;1 4 6;0.8 4 6;2 5 1;1 6 2;0.4 6 2]; B = ...
nästan 6 år ago | 0
How to find out an element from a array when I have given some condition and rest of the elements will strore in different file as it is not obey the condition.
clc; close all; clear all; A=[0.006 0.001 3 4 0.005;6 7 0.008 9 10] B = A<0.01 C = A(B) D = A(~B) matlab.io.saveVariables...
nästan 6 år ago | 0
How to find out an element from a array when I have given some condition and rest of the elements will strore in different file as it is not obey the condition.
A=[ 1 4 5 88 34 9 10 3 45 12]; B = A < 10; C= A(B) D =A(~B) C = 1 4 5 9 3 D = 88 34 ...
nästan 6 år ago | 0
Question
The following command find_system('BlockType','Outport') only returns the outports present in the top most subsystem.It doesn't return the ones present in levels below.I tried using Search Depths, LookUnderMasks, FollowLinks but none of them worked
load_system('Test') open_system('Test') H = find_system('BlockType','Outport')
nästan 6 år ago | 0 answers | 0
0
answersQuestion
Need Help Appending data to a table in every iteration from a for loop .I want to add new data to New_Table every loop but not overwrite the existing data.
filename = 'Notes.xls'; sheet = 1; T = readtable(filename); App_Names= T(:,4); Unique_Data = unique(App_Names); ...
ungefär 6 år ago | 2 answers | 0
2
answersQuestion
Can somebody give an brief idea where s function's can be used and what is it all about?
Can somebody give an brief idea where s function's can be used and what is all about?
nästan 8 år ago | 3 answers | 0
3
answersQuestion
Why do i get the error message 'More than one advisor process call back function found.But only the one with higher precedence is used'
When i try running the model advisor checks for my simulink model. Then i get the warning message 'More than one advisor proces...
mer än 8 år ago | 1 answer | 0
1
answerQuestion
I have a constant block which is used an input to my simulink block.When i do update diagram.It throws an error message saying 'Invalid setting for constant block for parameter value '.Why do i get this error ?
I have a constant block which is used an input to my simulink block.When i do update diagram.It throws an error message saying '...
mer än 8 år ago | 1 answer | 1
1
answerQuestion
joining various points when using a for loop.
for p=0:0.05:1 h=p*log(1-p) plot(p,h) end For the above code i am trying to join the discrete points but...
ungefär 9 år ago | 1 answer | 0
1
answerQuestion
using the following "function output = conv_enco(input, K, g)" i have to call "function [next_state, output] = conv_enc(crt_state, input, K, g)" how can it be done in a matlab code? Kindly let me know.
How can call the above first function1 using function2 in a matlab code?
ungefär 9 år ago | 1 answer | 0
1
answerQuestion
implementing direct form 2 without using filter command
x = randn(200,1); for n = 9:length(x) y(n) = 9*w(n)+w(n-1)+w(n-2)+33*w(n-3)+12*w(n-4) w(n) = 2*w(n-1)-1.5*w(n...
mer än 9 år ago | 1 answer | 0
1
answerQuestion
how can i give rand function as an input to the given difference equation?
n=10 x(n)=randn(n,1) y(n)=2.5*x(n)+ x(n-1) The x(n)should be given as input to the y(n) but when i tried doing that x...
mer än 9 år ago | 1 answer | 0
1
answerQuestion
how can i find the angle of a given input sequence [-1,2,-3,2,-1] using matlab not the phase response?
The answer given is pi.I found the X(w) the fourier tranform and i got the exponential terms.Now i am unable to get the phase no...
mer än 9 år ago | 0 answers | 0
0
answersQuestion
how can i use legend command when i am using hold on for plotting graphs? in my plot i want to use legend command to indicate the color for respective plot that is black for low pass,blue for high pass,green for power complementary,red for all pass.
k = input('Number of frequency points = '); %%256 w = 0:pi/k:pi; alpha=0.3 num=((1-alpha)/2)*[1 1] den...
mer än 9 år ago | 1 answer | 0
1
answerQuestion
These are my inputs how can i use str2num in title so that i can display the values of inputs?
A=input('amplitude= ') N=input('period= ') I get the following errors ??? Error using =...
mer än 9 år ago | 2 answers | 0