Community Profile

photo

C.J. Harris


Last seen: más de 1 año hace Con actividad desde 2011

Followers: 0   Following: 0

Contacto

Estadísticas

All
  • First Review
  • 3 Month Streak
  • Knowledgeable Level 4
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
Division with negative powers
u = [0 0 1 0 1]; v = [1 4 4 4 3]; Result = filter(u,v,[1, zeros(1,7)]) ans = 0 0 1 -4 13 -40 121 -364

alrededor de 6 años hace | 1

| aceptada

Respondida
How to add 'Description' to '.jpeg'?
If you're only interested in the 'Comment' field, then you can set it directly: imwrite(i,'figC.jpg', 'Comment', 'Made with...

alrededor de 6 años hace | 0

| aceptada

Respondida
How to make array with first values of matrix
% Input A = [1 2 3 4 5 6 7 8 9 10;2 2 3 3 4 5 5 2 3 3]'; % Result B = A([boolean(1); diff(A(:,2))~=0],1);

alrededor de 6 años hace | 0

Respondida
How do I read strings with textscan?
Have you tried specifying the delimiter? formatSpec = '%d %s %f %f %f %f %f %f %f %f %f'; C = textscan(fid,formatSpec,15...

alrededor de 6 años hace | 0

Respondida
Help with dec2hex (case sensitive and Zero)
You could change the line: CarsHex=dec2hex(CarsDecimal); to: CarsHex=lower(arrayfun(@(x) (dec2hex(x)), CarsDecimal,...

alrededor de 6 años hace | 1

| aceptada

Respondida
not enough input argument
Your code, which I've included below takes two inputs, x and y, however you don't use the first input 'x' anywhere in your code,...

alrededor de 6 años hace | 0

Respondida
Why this code is error???
Because given your definitions of x and y, the expression _3+(-x)+(-y)_ results in [3 1 -1 -3], and you cannot calculate the fac...

alrededor de 6 años hace | 0

Respondida
What is the matrix code for column vectors
There are a few ways to do this, for example: x = [u' v (u' + v)] The apostrophe can be used to transpose a matrix. You ...

casi 7 años hace | 0

Respondida
How can I find a sub-folder in the (just in the) current directory ?
You can specify _exist_ to only look in the current directory. For example: lFolder = 'MyFolder'; if(exist([cd filesep l...

casi 7 años hace | 0

| aceptada

Respondida
How to convert Matlab figure to excel sheet ?
See this related question: <https://uk.mathworks.com/matlabcentral/answers/100687-how-do-i-extract-data-from-matlab-figures>

casi 7 años hace | 0

Respondida
Why function blpsrv is 'undefined' after Datafeed Toolbox is installed
See the product requirements at this <https://uk.mathworks.com/products/availability.html#DF link> It states that Bloomberg d...

casi 7 años hace | 0

Respondida
Extract group of identical values from an array
a = [0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 1 1]; nStart = find(diff([0 a 0]) == 1); nEnd = find(diff([0 a 0]) == -1)...

casi 7 años hace | 0

Respondida
Which version of system generator supported by MATLAB 2016a ?
See the following link: <https://www.xilinx.com/support/answers/55830.html AR# 55830> It states that for Vivado System Genera...

casi 7 años hace | 0

| aceptada

Respondida
How do I import a timestamp from Excel/csv?
Try this: [NUMERIC, TXT, RAW] = xlsread('My_Spreadsheet_Name'); You'll find the timestamps in both the TXT and RAW outp...

casi 7 años hace | 1

Respondida
which versions are compatible for matlab, intel visual fortran and visual studio
Follow this link: <https://uk.mathworks.com/support/sysreq/previous_releases.html System Requirements & Platform Availability> ...

casi 7 años hace | 0

Respondida
how can I extract first number of cell?
a ={[8,21,291,94,455,241,227,36,130] [15,248,455,241,227,36,130] [21,291,94,455,241,227,36,130] [36,130]}; *Question 1:* ...

casi 7 años hace | 2

| aceptada

Respondida
I have a data set like this, How can i delete raw ofs values less than 10, and T values which are zero, How can i sum s values which are related to same T values ?
One way to do it: data = [878.00 9.00 1.00 12.00 166.00 12.00 ...

alrededor de 8 años hace | 0

| aceptada

Respondida
How can I change tunable parameters in generated C++ class from private to public?
If you set parameter member visibility option to 'public' this will move the tunable parameters structure from private to public...

alrededor de 8 años hace | 1

| aceptada

Respondida
I am unable to identify the two simulink blocks that are shown in the snapshot of a Control System Simulink Model.
The first block is the 'Display' block. See <http://mathworks.com/help/simulink/slref/display.html> The second block is the '...

alrededor de 8 años hace | 0

Respondida
how to retrieve the Simulink execution order from the workspace
As far as I know there isn't really an easy way to do this (i.e. using get_param or similar). Instead you have to debug your mod...

alrededor de 8 años hace | 0

| aceptada

Respondida
HELP PLEASE!! How do I print matlab "1:5 multiply increases each line"
Do you mean like this? clc fprintf(' SGD USD GBP EURO \n') for x= 1 : 5 USD = 0.69 * 2 * x; GBP = 0...

alrededor de 8 años hace | 1

Respondida
In Matlab r2010b, how to find that string contains japanese character?
Depends on what you define as Japanese. The Hiragana characters have an Unicode range from 12352-12447, while the Katagana chara...

más de 8 años hace | 3

Respondida
Letter refer to number
Nr2 = double(Letter)-'A'+1

más de 8 años hace | 0

| aceptada

Respondida
how to create a data buffer in simulink
I believe the _Tapped Delay_ block should do what you are requesting. You can find this block in the Simulink Library Browser un...

más de 8 años hace | 1

| aceptada

Respondida
Summing different set of arrays.
nYear = 2002; nValue = 14; x = [7 10 2001 24 10 5 1 7 10 2001 14 15 2 1 7 10 2001 14 13 2 9 ...

más de 8 años hace | 0

| aceptada

Respondida
how to convert model from continuous state space with disturbance to discrete
% Create state space model sys = ss(A,B,C,D); % Convert to discrete, where dt is your discrete time-step (in seconds...

más de 8 años hace | 2

Respondida
Cutting a certain pattern from an array
A = [1 2 3 4 5 6 0 0 0 0 1 2 3 4 5 6 7 8 9 10 0 0 0 0]; B = [0 0 0 0]; C = A(setxor(cell2mat(arrayfun(@(x)(x:x+lengt...

más de 8 años hace | 1

| aceptada

Respondida
How to implement the counter (really simple)?
Infeasibles = any((A<=0) | (B>100),2);

más de 8 años hace | 0

Respondida
Why does char give me an empty output?
This is because ASCII characters 1 to 7 are not visible characters. See the 'Dec' column: <http://www.asciitable.com/>

más de 8 años hace | 1

Cargar más