How to generate below matrix

2 views (last 30 days)
Vikas Saroha
Vikas Saroha on 6 May 2019
Answered: John D'Errico on 6 May 2019
Matrix for one particular problem is shown below. But the position of coefficients may vary according to observations. How to start, please tell.
  1 Comment
Torsten
Torsten on 6 May 2019
Edited: Torsten on 6 May 2019
J = zeros(10,12);
J(1,1) = dD_AB_dxA;
J(1,2) = dD_AB_dyA;
...

Sign in to comment.

Accepted Answer

John D'Errico
John D'Errico on 6 May 2019
Lets be serious here. You want to learn to create a general matrix, with elements in various places, that may, or may not, be where you indicate in the fuzzy picture.
So you need to learn to use MATLAB. After all, that is what MATLAB is about, matrices. But you don't know anything about MATLAB as far as we can tell. So you need to read the getting started tutorials. Do that FIRST. There you will learn to do things like how to create a matrix of zeros, thus most of your array. There you will learn about how to assign elements to a matrix, which is basically the rest of your question.
At some point, when you learn enough about MATLAB, you might learn to use tools like sparse, sub2ind, accumarray.
We are not told what the elements in this general array you show are. Are they symbolic? Numeric? Who knows? Only you. But that just means that you are the one who needs to learn MATLAB. We are not even told which toolboxes you have.
Basically, read the manual, as that will teach you everything you need to know. And since we have no idea how much you know already, for us to retype the entire manual is vastly more effort than anyone could do here.

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!