解決済み


Replicate elements in vectors
Replicate each element of a row vector (with NaN) a constant number of times. Examples n=2, A=[1 2 3] -> [1 1 2 2 3 3] ...

5年以上 前

解決済み


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

5年以上 前

解決済み


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

5年以上 前

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

5年以上 前

回答済み
How can I insert an vector graphic in App Designer in Matlab?
Try this: In MATLAB: imshow('file.svg') If you are using App Designer: imshow('file.svg','Parent',app.UIAxes)

5年以上 前 | 1

回答済み
generate a unique ID
This has already been asked: https://nl.mathworks.com/matlabcentral/answers/240447-using-java-uuid-in-matlab#answer_191523 tem...

5年以上 前 | 1

回答済み
how do i get the higher values into the bins
Maybe try using histcounts Here is a small example: X = randn(1000,1); edges = [-5 -4 -2 -1 -0.5 0 0.5 1 2 4 5]; N = his...

5年以上 前 | 1

回答済み
Display logo in app designer
Try this: imshow('aaaaa.png','Parent',app.UIAxes);

5年以上 前 | 0

| 採用済み