Statistics
RANK
225,305
of 301,204
REPUTATION
0
CONTRIBUTIONS
4 Questions
1 Answer
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
0
RANK
of 21,191
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 173,368
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
Why I get different results evaluating the same matrix usign the symbolic toolbox and the numerical approach?
clc; close all; clear all; %% model 2 syms Wc dt a q_x q_y q_z Dt f1(a, Wc) f2(a, Wc) f3(a, Wc) % Wc = a^2+wc^2 ...
9 years ago | 1 answer | 0
1
answerQuestion
Hello, I am trying to wright a variable directly on the GPU using the following command:
A5 = parallel.gpu.GPUArray.rand(3000,3000); but I get the following error: Undefined variable "parallel" or class "paralle...
9 years ago | 2 answers | 0
2
answersHello, I am trying to solve this problem: I have a matrix, for semplicity let's consider a vector and I want to get only the indexes of the element sorted in descending order
I have not the indexes, I want to find them
9 years ago | 0
Question
Hello, I am trying to solve this problem: I have a matrix, for semplicity let's consider a vector and I want to get only the indexes of the element sorted in descending order
% consider the vector A A = [10 9 4 2 7 3 5 1] % what I want is to get only B = [10 9 7 5 1] % or is the same the ind...
9 years ago | 2 answers | 0
2
answersQuestion
I have to sum two matrix with different dimension, for example Px = [3x3] and Py = [6x6], how can I insert elements on the diagonal of Px between P11 and P22 for example to make it of the same dimension of Py?
% starting matrix Px = [1 2 3; 4 5 6; 7 8 9]; % Py = magic(6); % elements to increase Px: v = [a1 a2 a3]; % Final mat...
10 years ago | 2 answers | 0